-
7 Nov 2011 11:37 PM #1
Unanswered: a.getComputedStyle(c.firstChild.firstChild, null) is null
Unanswered: a.getComputedStyle(c.firstChild.firstChild, null) is null
I cant describe this well becasue there is no visible problem except error in firebug..
I saw this as a bug report but in 4.0.7 version it still persists.
Can this be fixed by override (any example)? and will it be finally fixed in 4.1?
I know that it can be fixed by editing ext source but i d rather not go there everytime new version is out...
ext-all-debug.js : 6270
and ext-all-debug.js : 6300Code:{ identity: 'RightMargin', fn: function(doc, div) { var view = doc.defaultView; if(view.getComputedStyle(div.firstChild.firstChild, null)==null){ view = doc.body.defaultView; } return !(view && view.getComputedStyle(div.firstChild.firstChild, null).marginRight != '0px'); }
Code:{ identity: 'TransparentColor', fn: function(doc, div, view) { view = doc.defaultView; if(view.getComputedStyle(div.firstChild, null)==null){ view = doc.body.defaultView; } return !(view && view.getComputedStyle(div.lastChild, null).backgroundColor != 'transparent'); } },
-
16 Nov 2011 12:21 PM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,581
- Vote Rating
- 433
- Answers
- 3100
What class and method is this happening in? All classes can be overridden one method at a time easily.
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.
-
16 Nov 2011 11:17 PM #3
well, the class is as i said located around line 6270 at ext-all-debug.js (4.0.7).
What else do you need to know?
When this bug will be fixed? and again can anybody provide me an override?
-
17 Nov 2011 6:39 AM #4Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,581
- Vote Rating
- 433
- Answers
- 3100
If you need a hotfix, depending on your support subscription level, you can get one from http://support.sencha.com/
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.
-
1 Feb 2012 7:27 AM #5
Problem only in FireFox
Problem only in FireFox
I try Opera,Chrome, IE and only FF have problem with this!!!
www.codelighter.com
There are 10 types of people in this world, those who understand binary and those who dont


Reply With Quote
