How do I go to the last row of the RadGrid? the line must be visible
and selected. I did so but it does not work (Prerender event):
int c = rdg.Items.Count;
GridDataItem item = rdg.Items[c - 1];
rdg.ClientSettings.Scrolling.AllowScroll = true;
item.Font.Bold = true;
item.Selected = true;
item.Display = true;
item.Visible = true;
int c = rdg.Items.Count;
GridDataItem item = rdg.Items[c - 1];
rdg.ClientSettings.Scrolling.AllowScroll = true;
item.Font.Bold = true;
item.Selected = true;
item.Display = true;
item.Visible = true;