What I really meant, is this (probably you want to define the actions
somewhere else):
import QtQuick 2.4
import Ubuntu.Components 1.3
MainView {
width: units.gu(80)
height: units.gu(70)
Action {
id: action1
text: "Action 1"
onTriggered: print("first one")
}
Action {
id: action2
text: "Action 2"
onTriggered: print("second one")
}
Page {
header: PageHeader {
title: "Example"
extension: Sections {
actions: [ action1, action2 ]
selectedIndex: 1
}
}
Button {
anchors.centerIn: parent
text: "Change action name"
onClicked: action1.text = "First action"
}
}
}
--
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1557707
Title:
[Sections] selectedIndex binding is broken if the model changes
To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1557707/+subscriptions
--
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs