Hi,
The grid always shows new rows at the end because of the way the BindingManager notifications work. There's no way to insert a row via the grid. But what you could do is add a new row and then move that row to the position you want. Something like this:
UltraGridRow row = this.ultraGrid1.DisplayLayout.Bands[0].AddNew(); row.ParentCollection.Move(row, 0); this.ultraGrid1.ActiveRowScrollRegion.ScrollRowIntoView(row);
thx Mike, but i ask about the ultragrid with multi clomns header like this: