I'm using agile toolkit version 4.2. I'm using a javascript function that creates a modal (popup) and the content is inserted via ajax call. The content was inserted via jquery's ".html()" function but in case of big data, this function is very slow.
I replaced this function with the plain javascript function ".innerHTML".
But now, the atk4_form.js is not loaded anymore and I don't know why. Is there any hook on the jquery's "html()" function? All the content events are called when I use "html" but none of them is called when I use "innerHTML".
I know that the class "Form_Basic" loads tht atk4_form.js in the "render" function. But there must be some hook for the render also that is pointed to jquery's "html" or "append" functions.
Any idea how can I load atk4's base functions when I use javascript function "innerHTML"?