
thepilsbury
Top achievements
Rank 1
thepilsbury
asked on 01 Feb 2008, 01:29 PM
I would like to be able to rebind a datagrid from client-side javascript using ajax technology. Can this be done? If so, do you have a sample I could follow?
Many thanks.
Many thanks.
5 Answers, 1 is accepted
0
Hello,
Unfortunately, at present the required functionality is not available.
You can only use an AjaxRequest, to get to the server and rebind the control. I hope this is a suitable option for you.
Greetings,
Yavor
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Unfortunately, at present the required functionality is not available.
You can only use an AjaxRequest, to get to the server and rebind the control. I hope this is a suitable option for you.
Greetings,
Yavor
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0

thepilsbury
Top achievements
Rank 1
answered on 01 Feb 2008, 07:44 PM
That may work for me. Please advise how to do this. I've tried the following but to no avail:
form1[
"<%=RadGrid1.ClientID %>"].AjaxRequest('<%= RadGrid1.UniqueID %>','Rebind');
Thanks
0
Hello thepilsbury,
The built-in AJAX mode in RadGrid is removed in Prometheus. You can use RadAjax AjaxRequest instead:
http://www.telerik.com/help/radcontrols/prometheus/?ajxClientSideAPI.html
Greetings,
Konstantin Petkov
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
The built-in AJAX mode in RadGrid is removed in Prometheus. You can use RadAjax AjaxRequest instead:
http://www.telerik.com/help/radcontrols/prometheus/?ajxClientSideAPI.html
Greetings,
Konstantin Petkov
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0

MGrassman
Top achievements
Rank 2
answered on 05 Feb 2008, 05:21 AM
Does this solution work with the radajaxmanagerproxy control.
If so can you list code.
Thanks,
If so can you list code.
Thanks,
0
Hi MGrassman,
RadAjaxManagerProxy is only "AjaxSettings container" and does not expose AjaxRequest event. You can use GetCurrent() method to get the manager from the user control/content page and then wire up the AjaxRequest() method manually:
RadAjaxManager1.AjaxRequest += new Telerik.Web.UI.RadAjaxControl.AjaxRequestDelegate(this.RadAjaxManager1_AjaxRequest);
Here is another forum thread that elaborates on the matter.
Kind regards,
Steve
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
RadAjaxManagerProxy is only "AjaxSettings container" and does not expose AjaxRequest event. You can use GetCurrent() method to get the manager from the user control/content page and then wire up the AjaxRequest() method manually:
RadAjaxManager1.AjaxRequest += new Telerik.Web.UI.RadAjaxControl.AjaxRequestDelegate(this.RadAjaxManager1_AjaxRequest);
Here is another forum thread that elaborates on the matter.
Kind regards,
Steve
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center