Hi,
I want to rebind my RadComboBox and my CheckBoxList once the RadWindow had been closed. I have this javascript that runs on the OnClientClose event of RadWindow:
function closeRadwindow() {
$find("<%= RadAjaxManager1.ClientID %>").ajaxRequest();
}
This script invoke an ajaxRequest() in the OnClientclose event handler. Then in the Event handler rebind the radcombobox.
Private Sub RadAjaxManager1_AjaxRequest(ByVal sender As Object, ByVal e As Telerik.Web.UI.AjaxRequestEventArgs) Handles RadAjaxManager1.AjaxRequest
ddClient.DataBind()
chckSoftware.DataBind()
End Sub
But I can't still rebind my RadComboBox and CheckBoxList. Any suggestion/help will be greatly appreciated.
Thanks!
I want to rebind my RadComboBox and my CheckBoxList once the RadWindow had been closed. I have this javascript that runs on the OnClientClose event of RadWindow:
function closeRadwindow() {
$find("<%= RadAjaxManager1.ClientID %>").ajaxRequest();
}
This script invoke an ajaxRequest() in the OnClientclose event handler. Then in the Event handler rebind the radcombobox.
Private Sub RadAjaxManager1_AjaxRequest(ByVal sender As Object, ByVal e As Telerik.Web.UI.AjaxRequestEventArgs) Handles RadAjaxManager1.AjaxRequest
ddClient.DataBind()
chckSoftware.DataBind()
End Sub
But I can't still rebind my RadComboBox and CheckBoxList. Any suggestion/help will be greatly appreciated.
Thanks!