hello,
my problem is, i am using the radgrid in that i am showing the status of each row (it is a hyperlink)
on click of status i am showing the radwindow in that i have option to change the status for that row.
on rad window i have 2 buttons
Save and
close on on save i am saving the status in database and redirecting to the parent page
while redirecting it should refresh the parent page and update the status of that row.
even on close button i want same ,
but now it is refreshing the page only first time when i open the radwindow and closed it but after i want to change the status of second row i am getting the jscript error "
element parent node is null" and "
Object doesnot support property or method" after this idid some changes,
i used
DestroyOnClose="true" then it is showing the
my code is below on Parent page
i using the
<telerik:RadAjaxPanel ID="rjxPanel_PurchaseOrder" runat="server"
LoadingPanelID="RadAjaxLoadingPanel1" Width="100%" Height="100%" >
in parentAspx.cs
and another page which will show in radwindow
and on close button :-
<asp:Button ID="btnClose_Top" runat="server" Text="Close"
OnClientClick="javascript:closeRadWindow();return false;" />
and on save button
string script = "<script>CloseAndRebind('Rebind')</" + "script>";
ScriptManager.RegisterStartupScript(this, this.GetType(), "CloseAndRebind", script, false);
PlZ plz tell the solution