qt - Nested TableView -


i created nested tableview elements of main tableview. enter image description here

for example, if rowtitle == ""brilliance" , created subtableview row.

listmodel {     id: librarymodel     listelement {         title: "a masterpiece"         author: "gabriel"     }     listelement {         title: "brilliance"         author: "jens"     }     listelement {         title: "outstanding"         author: "frederik"     } } tableview {     tableviewcolumn {         role: "title"         title: "title"         width: 100        //if title==""brilliance" create second tableview     }     tableviewcolumn {         role: "author"         title: "author"         width: 200     }     model: librarymodel } 

do have idea how ?

thanks lot !


Comments

Popular posts from this blog

cookies - Yii2 Advanced - Share session between frontend and mainsite (duplicate of frontend for www) -

angular - password and confirm password field validation angular2 reactive forms -

php - Permission denied. Laravel linux server -