
| <script language="javascript" type="text/javascript"> | |
| //<![CDATA[ | |
| function SetCompareRed(sender, eventArgs) { | |
| var compareChoice = $find("cmbCompare"); | |
| compareChoice.BackColor = "Red"; | |
| } | |
| //]]> | |
| </script> |
Can someone please help me
Thanks
maggi

I update my data in a radwindow. I then call the javascript to refresh the radgrid on the parent page.
Everything works except for the final radgrid ajax refresh.
The DB is already updated; I see the select from the radgrid run but the display does not reflect the updates.
If I press the refresh or do any filtering, etc the data displays correctly..
Thanks for any help.
Bill
function refreshGrid(arg) {
if (!arg) {
$find(
"<%= RadAjaxManagerWorkQ.ClientID %>").ajaxRequest("ReBind");
}
else {
$find(
"<%= RadAjaxManagerWorkQ.ClientID %>").ajaxRequest("rgIncomingRebind"); <-Hits here!
}
}
The code behind:
Private Sub RadAjaxManagerWorkQ_AjaxRequest(ByVal sender As Object, ByVal e As Telerik.Web.UI.AjaxRequestEventArgs) Handles RadAjaxManagerWorkQ.AjaxRequest
Select Case e.Argument
Case Is = "rgIncomingRebind"
rgIncoming.Rebind()
End Select
End Sub