StackView getting signals from pushed objects
Unsolved
QML and Qt Quick
-
ListView { model: SQLModel {} delegate: ItemDelegate { text: model.text onClicked: stackView.push("newpage.qml", {id: model.id} } }
I want to get signals from pushed objects.
If I change my SQL table (not model) from newpage.qml page, after popping back to page above ListView model does not change. I need to refresh that page after pop or simply just update related row with a simple signal. But I could not find how to get signals from pushed objects or another way of doing this.