or
protected void Response_Selecting(object sender, ObjectDataSourceSelectingEventArgs e)
{
int test = 0;
}
Why am I asking this question> ? The grid is loading for the first time, I need to know which child record is being requested for binding under the parent row. When I get the index, I will do another fetch from the IQueryable object to return a list object.
Any help is appreciated...
MasterTable.clearSelectedItems();
MasterTable.set_currentPageIndex(NextPageIndex,
true);
MasterTable.rebind();
MasterTable.selectItem(0);
set_currentPageIndex, doesn't make the function
GridReport_PageIndexChanged
to be fired.
The rebind calls need data source and there I check the pageIndex, and I get the index before the change..
Do you have any idea what am I doing wrong?
How can I change the page index using java script?
Thanks.