-
18 May 2012 4:48 AM #1
[Bug] Z-Index increment on TabPanel animations
[Bug] Z-Index increment on TabPanel animations
Hello,
I've been using Sencha Touch in a professional environment for some time now and I'm fully satisfied with it. The product is absolutely great.
I post today because it seems there is a bug in the 'before' methods of the animations('fade', 'slide', 'pop').
In my case, this methods are called whenever the user tabs between panels of a TabPanel component.
This line exists for each of the 3 animations. It seems to get the current z-index of a panel, and adds 1 at the end.Code:curZ = el.getStyle('z-index') == 'auto' ? 0 :el.getStyle('z-index')
I think the normal behavior would be to have an incremented z-index (0, 1, 2, 3...).
Instead of incremental, the z-index does the following : (0, 1, 11, 111...).
Which means that if I tab about 6 or 7 times in a row, the z-index starts to be very high and MessageBox (in my case) appears under the panels (because I believe it has a z-index of 10.000).
I could fix the problem by replacing the code above by the following.
Hope I could be of some help.Code:curZ = el.getStyle('z-index') == 'auto' ? 0 : Math.round(el.getStyle('z-index'))
-
18 May 2012 5:00 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,657
- Vote Rating
- 435
is a better way than Math.roundCode:parseInt(someString, 10)
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote