When the user closes a radwindow the following javascript function is called to refresh the grid on the parent page:
function refreshGrid(arg) {
$find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("Rebind");
}
That works great. I now need javascript to get the itemcount from the grid, after the grid has refreshed, and update a text field on the page.
How can I get the itemcount grid value via javascript?
function refreshGrid(arg) {
$find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("Rebind");
}
That works great. I now need javascript to get the itemcount from the grid, after the grid has refreshed, and update a text field on the page.
How can I get the itemcount grid value via javascript?