Hi ,
I have implemented a Jquery modal form in my application.
I have a region and in the header I have the following code :
<div id="transaction" title="Update transaction details" >
. This is basically a form region and has around 35 items.
I call this through the Jquery function
$("transaction").dialog('open');
This works well for me.
Now I want to move these items to a different page.
How can I call this page as a modal dialog form ?
I would like to do :
$(NEW_PAGE).dialog('open') // NEW PAGE can be an URL to the new page ?
How I can achieve this functionality ?
Thanks,
Dippy