Skip to main content

How do you prevent the movement of the header?

Comments

1 comment

  • Dapfor Team

    Dear Yang Sun Yeol,

    Each column has Column.Movable property. it's enough to set it to false and the user won't be able to move them. So, you can do a small loop to prevent all columns from moving:

    for(Column column = grid.Headers[0].Columns)
    {
    column.Movable = false;
    }

     

    Best regards,

    Dapfor

    0

Please sign in to leave a comment.

Powered by Zendesk