Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
480
Move row (Server Side)
posted

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!!!

 

Parents
  • 356
    posted

    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 

Reply Children
No Data