TableViewColumn, ListModel, ... not displayed in the section "Navigator" of Qt Quick Designer
Unsolved
QML and Qt Quick
-
Hi!
I would like to know if there is a way to display components such as TableViewColumn or ListModel/ListElement in the hierarchy of the Navigator section in Qt Quick Designer in order to have access to their properties in the "Properties" section of the designer.
Here is an example of the content of edit mode. My goal is to see the two TableViewColumn in the hierarchy of the navigator section in design mode;
TableView { id: tableView1 TableViewColumn { width: 100; role:"role1"; title:"title1"} TableViewColumn { width: 100; role:"role2"; title:"title2"} }
Thank you !
Okyn