Hi everyone,
I found the following code to place rows in the grid into edit mode without requiring a rebind().
I found the following code to place rows in the grid into edit mode without requiring a rebind().
for (int i = 0; i < RadGrid1.PageSize; i++)
{
RadGrid1.EditIndexes.Add(i);
}
Am I missing something or will this only work for the first page of data?
How do I determine what the current Page Index is during Page_Load, the CurrentPageIndex property seems to always be 0?
Many thanks
Antony