Re: CF, IE6 & Ext JS Oh My!

2009-10-30 Thread Paul Cormier
>So, Ext.isReady is like $("document").ready() in jQuery ... good to know >if I ever play around with Ext. It's a convention in jQuery to wrap all >those sorts of functions in a ready() call for just this reason: > >$("document").ready().function { >doMyStuffNowThatWeAreDoneLoading(); >} A

Re: CF, IE6 & Ext JS Oh My!

2009-10-30 Thread Jason Fisher
So, Ext.isReady is like $("document").ready() in jQuery ... good to know if I ever play around with Ext. It's a convention in jQuery to wrap all those sorts of functions in a ready() call for just this reason: $("document").ready().function { doMyStuffNowThatWeAreDoneLoading(); } ~~~

Re: CF, IE6 & Ext JS Oh My!

2009-10-30 Thread Brett Davis
Ok I found my answer and I shall share. What I was looking for was a property in the Ext JS that let me know it was done doing it's thing. After digging around the Ext JS 1.1 Documentation I found the 'Ext.isReady' property. Quick little test with an alert placed in the try catch block showed t

Re: CF, IE6 & Ext JS Oh My!

2009-10-30 Thread Brett Davis
Ok well from the last post I got an idea to use the try catch to throw an alert box up with the error message. When the alert box pops up lets me know exactly when my inline javascript is firing and as I kind of expected, the content drawn on the screen stacked down the page. Which means that t

Re: CF, IE6 & Ext JS Oh My!

2009-10-30 Thread Stephane Vantroyen
Hi, I'm not aware of such a book, but have you tried something like : function refreshActiveTab(){ try{ var mySelectedTab = '#url.selectedTab#' ColdFusion.Layout.selectTab("myTabs", mySelectedTab); return; } catch(er

CF, IE6 & Ext JS Oh My!

2009-10-30 Thread Brett Davis
Ok got a question for all the gurus out there. Is there a hidden book of knowledge on the subject of ColdFusion and Ext JS for version 8 of CF? One of the annoying things I am running into that I can live with but I just want to know why it happens is this. I am using in a tabbed layout. The