In UltraGrid, Is there a way to add a new row at a particular index instead of always allowing only to add at the bottom.
Nagarjun
Hi Nagarjun,
The grid will show new rows wherever they exist within the grid's DataSource. Unfortunately, the BindingManager in DotNet seems to have a bug where it will always send a notification for newly-added rows with an index of the last row, so they always show up on the bottom.
What you could do is add a row to the grid band and then use the Move method on the rows collection to re-position that row where you want it.