Hi All,
I am facing a problem with RadWindow and RadListView.
I want to Rebind Perticular ListView on Parent Page on Close of the RadWindow.
I have used a RadTabStrip in side that i have more than one ListViews. I need to Rebind only perticular ListView.
I have added a code on RadWindow's Button click :
Which calls following method on Parent Page:
cs code:
This code doesn't work for me.
Any help will be appreciated.
Thanks in Advance.
--
Thanks & Regards,
Rakesh Gupta
I am facing a problem with RadWindow and RadListView.
I want to Rebind Perticular ListView on Parent Page on Close of the RadWindow.
I have used a RadTabStrip in side that i have more than one ListViews. I need to Rebind only perticular ListView.
I have added a code on RadWindow's Button click :
GetRadWindow().BrowserWindow.refreshGrid(args);GetRadWindow().close();Which calls following method on Parent Page:
function refreshGrid(arg) { //var btnName = $get("<%=btn.ClientID%>").name; //__doPostBack(btnName, ""); // Above Two Lines code works fine. But the whole page Postback is called. i need only refresh perticular ListView to Rebind. var ajaxManager = $find("<%= RadAjaxManager1.ClientID %>"); ajaxManager.ajaxRequest('Refresh'); }cs code:
protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e){ if (e.Argument.ToString() == "Refresh") { lstvTask.Rebind(); }}This code doesn't work for me.
Any help will be appreciated.
Thanks in Advance.
--
Thanks & Regards,
Rakesh Gupta