AD
Administrator
Syncfusion Team
July 25, 2005 06:28 AM UTC
Instead of deleting the records, you can try hiding them by setting their grid.Model.RowHeights[rowIndex] = 0.
Or, you could try making setting the dataTable1.DefaultView.RowFilter to some filter string that will only leave the last 11 rows. (To do this, would require you be able to come up with a filter string. If you had a primary key column for example, and the key had an increasing value for later records, you can filter for this key columns bing greater than or equal to the value of the first record you want to see.)