3 Item,
default.aspx, grid.ascx, popup.aspx
default if the main page contains the grid.ascx
grid.ascx has only a radGrid with column
When click column item, a popup radWindow will prompted using popup.aspx
I have add the follow ajax Manager code in default.aspx and callback javascipt function when popup.aspx radWIndow close.
and I sure that the javascript
runs properly.
But after ajaxRequest, the OnAjaxRequest="TheRadAjaxManager_AjaxRequest" didnt fired as I expected.
In this case, what the code in RadAjaxManger should be set? my one is
AgentRadGrid is the grid name need to refresh, what should be put in the AjaxControlID?
Thanks a lot!!
default.aspx, grid.ascx, popup.aspx
default if the main page contains the grid.ascx
grid.ascx has only a radGrid with column
<telerik:GridHyperLinkColumn Text="Deposit" UniqueName="deposit" DataNavigateUrlFields="Username" HeaderText="Point" |
DataNavigateUrlFormatString="javascript:OpenUpdatePoint('{0}',1);"> |
</telerik:GridHyperLinkColumn> |
When click column item, a popup radWindow will prompted using popup.aspx
I have add the follow ajax Manager code in default.aspx and callback javascipt function when popup.aspx radWIndow close.
and I sure that the javascript
var ranMgr = $find('<%= RadAjaxManager.GetCurrent(this).ClientID %>'); |
radMgr.ajaxRequest("Rebind"); |
But after ajaxRequest, the OnAjaxRequest="TheRadAjaxManager_AjaxRequest" didnt fired as I expected.
In this case, what the code in RadAjaxManger should be set? my one is
<telerik:AjaxSetting AjaxControlID="AgentRadGrid"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="UserRadTabPage" LoadingPanelID="TheRadAjaxLoadingPanel" /> |
<telerik:AjaxUpdatedControl ControlID="AgentRadGrid" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
Thanks a lot!!