How do I initialize a custom component after a page panel in Skuid mobile has been loaded? I have the following code in a JS component in regular SKUID
var element = arguments[0],<br> $ = skuid.$;<br>element.css({width:'400px',height:'200px'});<br>$(document).ready(function() {<br> element.jSignature();<br> element.jSignature("reset");<br>})
If I use the same code in mobile it doesn’t work. I guess this is because the DOM is loaded differently in jQuery Mobile. How do I get the init code to run when a certain page panel is loaded? I guess something with pageInit but haven’t been able to find exactly how.