I have JQuery dialog box for inserting new row in table. And everything works good. Few days ago when I inserted FlexiGrid for Table started a problem for me. When I insert new
Why not create the HTML in dialog every time you open it and then do this:
$(this).dialog("close"); $(this).remove();
..after you're done inserting the new record, usually after
$('#yourForm').submit();
Cheers!