Title: [SOLVED] Load form data from URL, but data not show immediatly by using alert() Post by: patana on August 01, 2016, 09:22:41 PM I have a dialog to show Form with a field of textbox.
Function Viewdata(){ $('#frm').form('load',URL); // data load from URL: {"comments":"Others"} alert(JSON.stringify($('#frm').serializeArray())); // [{"name":"comments","value":""}] } any solution? Title: Re: Load form data from URL, but data not show immediatly by using alert() Post by: jarry on August 02, 2016, 08:07:14 AM The form loads remote data asynchronously. You should wait the data to be loaded before processing it.
Code: $('#frm').form({ |