Hello All,
I am opening a rad window in the asp.net grid row command . It is working properly .
codebase:
in the command:
Telerik.Web.UI.RadWindow objwindow = new Telerik.Web.UI.RadWindow();
objwindow.VisibleOnPageLoad = true;
objwindow.NavigateUrl = "~/OfferManagement/CreateCounterOffer.aspx?OfferId=" + _commandArg;
double heightwinc = 400;
double widthwinc = 900;
objwindow.Height = new Unit(heightwinc);
objwindow.Width = new Unit(widthwinc);
pnlradData.Controls.Add(objwindow);
in the aspx page:
<asp:Panel ID="pnlradData" runat="server"></asp:panel>
The issue is, I want to refresh the parent window after closing that dynamically created "objwindow"(rad window) . I searched across the google but I didn't find a correct solution for it.Can I add any event? Please help me.
Thanks
Rama.M
I am opening a rad window in the asp.net grid row command . It is working properly .
codebase:
in the command:
Telerik.Web.UI.RadWindow objwindow = new Telerik.Web.UI.RadWindow();
objwindow.VisibleOnPageLoad = true;
objwindow.NavigateUrl = "~/OfferManagement/CreateCounterOffer.aspx?OfferId=" + _commandArg;
double heightwinc = 400;
double widthwinc = 900;
objwindow.Height = new Unit(heightwinc);
objwindow.Width = new Unit(widthwinc);
pnlradData.Controls.Add(objwindow);
in the aspx page:
<asp:Panel ID="pnlradData" runat="server"></asp:panel>
The issue is, I want to refresh the parent window after closing that dynamically created "objwindow"(rad window) . I searched across the google but I didn't find a correct solution for it.Can I add any event? Please help me.
Thanks
Rama.M