Qt Quick model with sub items navigation
Hi Qt Masters!
Here i am again asking for your help!
Here's my scenario:
a) i have a model of items with sub items
b) i used stack view in navigating the parent items, this is working fine already
c) my problem is how to access sub items, is it possible to create a stack view within the stack view (parent items)?
Please advise any possible approach on this issue.
Thanks in advance!
Re: Qt Quick model with sub items navigation
I don't know how would a stack view within a stack view work but if you want it then you can achieve that by using a VisualDataModel which will expose a lower level of your model.
Re: Qt Quick model with sub items navigation
Quote:
Originally Posted by
wysota
I don't know how would a stack view within a stack view work but if you want it then you can achieve that by using a VisualDataModel which will expose a lower level of your model.
Thank you for your response.
All I did now is push the sub item using a link.
Cheers!