| <script> |
| $(document).ready(function() { |
| $('#<%= imgWork.ClientID %>').shadow(); |
| }); |
| </script> |
function TaskGrid_GroupExpanded(row)
{
window[
"StartAjax"].AjaxRequest(row.Control.innerText);
}
The new code that we have created looks like this:
function TasksPortal_GroupExpanded(sender, eventArgs)
{
SessionWS.Set(
"TaskPortalExpandGroups", 'TaskPortalExpand~' + sender.Control.innerText);
return false;
}
According to the help documentation, the sender object should be the datarow. The problem is that the sender.Control.innerText statement returns the text for the entire grid and not just the current row.
Does anyone have any suggestions on how to accomplish this using the new grid?
Thanks for the help,
Greg
function RebindGrid()
{
$find("<%= UserFilter1_telerikjaxManagerUser1.ClientID %>").ajaxRequest("Rebind");
}
Is there any other way to access this in page.