09-29-2012 11:07 AM
Hi all,
is there a way to change dynamically the z index of a visual node in QML ?
Thanks.
Solved! Go to Solution.
10-01-2012 06:22 PM
I have the same questions. Any idea?
01-03-2013 05:22 AM - edited 01-03-2013 05:34 AM
Someone know if something changed about this ?
Cause I have a page with some elements draggable, the problem is that when I drag an element, there is a conflict if this one is under another element, so I would like to increase it z index.
01-03-2013 05:36 AM
I am only 99% sure, but I don't think this is possible.
01-03-2013 05:39 AM
Arf in QtQuick it was...
01-09-2013 07:21 PM
It appears as if z-order is strictly a property of when the element was created, with the most recently created elements having the highest z-order.
It is a hack, but I am generating one of my pages from the bottom up in order to get the proper z-ordering on things...
01-10-2013 12:38 AM
if you want your overlap control receive touch event you should allow OverlapTouchPolicy https://developer.blackberry.com/cascades/referenc
this documentation may be can help you : https://developer.blackberry.com/cascades/document
but if you want to re arrange z-index of a component, you must re-arrange the scene graph, sample is available at bbjamcarousel sample :
https://github.com/blackberry/Cascades-Community-S
01-10-2013 01:07 PM
Thanks for all replies, the carrousel example help me a lot.
Now i use the swap() fonction.