-
6 Dec 2009 2:19 PM #1
Unanswered: It is possible to create a serious BUG REPORT thread for EXT CORE only?
Unanswered: It is possible to create a serious BUG REPORT thread for EXT CORE only?
I have find a lot of bugs.. also related with Events, event sequencing, event functions. POST HERE some BUGS and STRANGE BEHAVIOURS !!!
I WANT TO BELIEVE
example: function hasFxBLock() -->
with an Ext.Element el
console.log(el.hasFxBlock()); return a function not a boolean value..
-
6 Dec 2009 2:40 PM #2
SlideIn and Slideout strange behaviour
SlideIn and Slideout strange behaviour
use move and shift functions with complex event apps!

-
7 Dec 2009 4:36 AM #3
there aren't bugs out there?
there aren't bugs out there?
post something guys...

-
7 Dec 2009 4:55 AM #4Sencha - Ext JS Dev Team
- Join Date
- Mar 2007
- Location
- Notts/Redwood City
- Posts
- 30,458
- Vote Rating
- 20
- Answers
- 9
you first!
Search the forum: http://www.google.com/coop/cse?cx=01...%3Az7of1ufqccu
Read the docs too: http://extjs.com/deploy/dev/docs/
Scope: http://extjs.com/forum/showthread.ph...642#post257642
-
7 Dec 2009 5:12 AM #5Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- Baltimore, MD
- Posts
- 1,501
- Vote Rating
- 3
- Answers
- 1
I am unable to reproduce your problem with a simple test case.
Code:Ext.get('test').fadeOut({block:true,duration:20}); Ext.get('test').hasFxBlock(); // returns truePlease provide a test case and ext core version number with bug reports. See this thread on posting a useful bug report.Code:Ext.get('test').fadeOut({duration:20}); Ext.get('test').hasFxBlock(); // returns false-Shea
My Blog:VinylFox | Twitter:@VinylFox | JavaScript Magazine:JSMag | Curator of the Baltimore/DC JavaScript Meetup | Author: Learning ExtJS 3.x Book
ExtJS Extensions & Plugins: GMapPanel UX | HtmlEditor Buttons Plugin | Selection Enabler Plugin | Grid DataDrop Plugin | Additional Ext.Fx
Sencha Touch Plugins: Swipe Tabs | List Pull Refresh | Accelerometer Tabs
-
7 Dec 2009 6:56 PM #6
ok.. I made a mistake.. I want to refer hasActiveFX() func
ok.. I made a mistake.. I want to refer hasActiveFX() func
//THAT's ALL FOLKS.. I'm mad?Code:ed = Ext.get('test'); ed.stopFx(); console.log(ed.hasActiveFx()); //--> return UNDEFINED not FALSE boolean value ed.shift({ width:200, height: 100, opacity: 1, easing: 'easeOut', duration: 0.4 }); console.log(typeof ed.hasActiveFx()=='function'); // ok return object reference not TRUE value.. console.log(ed.hasActiveFx()); // --> function
I have to RTFM forever?Last edited by mystix; 8 Dec 2009 at 6:07 AM. Reason: POST CODE IN [code][/code] TAGS. see http://extjs.com/forum/misc.php?do=bbcode#code
-
8 Dec 2009 3:18 AM #7Sencha - Ext JS Dev Team
- Join Date
- Mar 2007
- Location
- Notts/Redwood City
- Posts
- 30,458
- Vote Rating
- 20
- Answers
- 9
You can use it. It's a kind of bug. A function is a truthy value, so you can use it in an if test.
I suppose the function should be changed from
toCode:hasActiveFx : function(){ return getQueue(this.dom.id)[0]; },
Code:hasActiveFx : function(){ return !!getQueue(this.dom.id)[0]; },Search the forum: http://www.google.com/coop/cse?cx=01...%3Az7of1ufqccu
Read the docs too: http://extjs.com/deploy/dev/docs/
Scope: http://extjs.com/forum/showthread.ph...642#post257642
-
8 Dec 2009 6:04 AM #8
ok thanks..
ok thanks..
I know that, but a function is not a primitive. I think i s only a conceptual bug
An object reference is different from a primitive value when passed to a closure or anonymous function in complex apps..
OK I'M NOT SO MAD..


Reply With Quote

