Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
In PathView , How to access unfocused Items .
-
I have a PathView with 7 items , Middle element is focuesd one , I need to access all the unfocused item ?
-
@KYADAV What
model
have you used ?
-
Im using C++ Model.
-
@KYADAV So the model contains all the information of all the items. You can write a function in that model to return whatever information you require for a particular element.
-
Hey Thanks , That sounds Good but I need to have a separate animation on each PathView element.
-
@KYADAV If I understood you correctly, use a custom delegate and then put animation code in the delegate component.
-
hey thanks @p3c0
I got it .