[jQuery] Jquery + ExtJS 3.0

2009-08-23 Thread Mik Fig
Has anyone had any luck integrating Jquery and ExtJS 3.0? I downloaded the ExtJS 3.0 SDK and I have a page where I am trying to test out there grid functionality. So I included these javascript files: ext-all.js and ext-jquery-adapter.js I have taken a look in the Jquery documentation at the

[jQuery] Re: Issue with setting click event functions in a for loop

2009-05-17 Thread Mik Fig
what i decided to do is unroll the loop, for example: if you have this loop: for(var i = 0; i = 9; ++i) alert(i); then you could unroll it to this: alert(0); alert(1); alert(2); ... alert(9); since i only had a total of 9 iterations of the loop, then it would only add a little bit to filesize