Hi Telerik,
i have upgraded my rad grid from Q3 2007 to Q3 2008.
after this when i am trying to rebind my grid from client side , it is showing error.
i am opening a radwindow and i want to refresh my grid in parant window while closing this child window.
below the code which i used in Q3 2007
i have upgraded my rad grid from Q3 2007 to Q3 2008.
after this when i am trying to rebind my grid from client side , it is showing error.
i am opening a radwindow and i want to refresh my grid in parant window while closing this child window.
below the code which i used in Q3 2007
function refreshGrid(arg)
{
if(!arg)
{
window[
"<%= RadRfqLineItem.ClientID %>"].AjaxRequest('<%= RadRfqLineItem.UniqueID %>', 'Rebind');
}
else
{
window[
"<%= RadRfqLineItem.ClientID %>"].AjaxRequest('<%= RadRfqLineItem.UniqueID %>', 'RebindAndNavigate');
}
}
can anybody help in this code.