I'm trying to move a row (server side)....
I've not been able to find an move command or an addAt...
The only way I've found to do this is to load all the data again and add to the grid in the correct order.....does anyone knows how I can do this in a smart way??
Any suggestions or help will be appreciatd!!!
protected void UltraWebGrid1_InitializeLayout(object sender, Infragistics.WebUI.UltraWebGrid.LayoutEventArgs e){ UltraWebGrid1.Bands[0].Columns.FromKey("Id").Move(2); }
Have you tried this?
Hope it helps
Johni Ecco
Thanks, but that way I'll be moving a column....I want to move a row!!
But I figured it out...it's
UltraWebGrid1.Rows.Insert(0, row);