简体   繁体   中英

Jquery UI Dialog - returning value of loaded aspx page

I am using the Jquery UI Dialog widget as well as the load command to open an existing aspx page within a dialog box

my code loads up the aspx page just fine.

$('#divCancelInspection').load('WOCancel.aspx').dialog({ /*properties specified*/ });

In my WOCancel.aspx page I have two buttons where I would want to return a value back to my calling page.

In my WOCancel.aspx

 $(document).ready(function() {      
   $('#btnCancelInspection').click(function() { /* return a value */ }); 
});

So now where I am stumped is how do I return the value back to my main page that created the dialog.


Now on a side note I know that a property set in my dialog box can be to specify the buttons. But I was wondering if there was a different way like I specified above? Otherwise I'll use something like below...

dialog({
 buttons: {
  'save': function() {/* code to find control value within dialog and use it*/ }, 
  Cancel: function () { /* close the dialog window */}
 }
});

I ended up just using the second method

Now on a side note I know that a property set in my dialog box can be to specify the buttons. But I was wondering if there was a different way like I specified above? Otherwise I'll use something like below...

dialog({
 buttons: {
  'save': function() {/* code to find control value within dialog and use it*/ }, 
  Cancel: function () { /* close the dialog window */}
 }
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM