Hi,
In my parent page I have a grid with edit button in each row.
I am opening edit form in RadWindow using following code.
After clicked on save button I want to display saved message and when user close the RadWindow , the grid/page in main window should get display with updated value.
I am looking for example, If you have any code please share with me.
Thanks,
Abhi
In my parent page I have a grid with edit button in each row.
I am opening edit form in RadWindow using following code.
<script type="text/javascript"> function OnClientClicked_PayInvoice(button, args) { var argument = button.get_commandArgument(); var arguments = argument.split("#"); var url = 'MakeOrderPayment.aspx?'; url = url + "ID=" + arguments[0]; radopen(url, "radWinInvoiceDetails"); button.set_autoPostBack(false); } </script>After clicked on save button I want to display saved message and when user close the RadWindow , the grid/page in main window should get display with updated value.
I am looking for example, If you have any code please share with me.
Thanks,
Abhi