I want to use a jQuery plugin in my Sencha Touch application.
The jQuery plugin should be initialized at startup, but only after Sencha Touch is finished filling the DOM with its magic.
This is because the plugin scans the DOM for certain elements and alters them.
If I use $(document).Ready(), the <body> tag is still untouched by Sencha Touch, even when I place the Sencha Touch code above the jQuery code.
What is the best practice way to handle this issue?
You need to tap into EXT’s own onReady event.