How would i got about only showing the first 10 rows of of a grid?
You should do it by assigning only 10 items as the data source, but you can also do it in the grid by setting Hidden = true for all rows with index larger than 9.
Can you give me a quick sample code on how to set the Hidden property for rows with index larger than 9?
foreach (UltraGridRow row in grid.Rows)
if (row.Index > 9) row.Hidden = true;
All set