Prevent Column Move

I have a GDBG in which I would like to prevent the user from moving one of the columns. I would like to retain the functionality for the rest of the columns to be moved by clicking in the header and dragging - I just want to disable this on one specific column. Is there a way to do this?

2 Replies

AD Administrator Syncfusion Team December 13, 2004 09:25 PM UTC

Try handling the grid.Model.ColsMoving event. In the handler, check e.From and e.Count. If the column you do not want to move is in this range, then set e.Cancel = true.


JL Jeff Lancaster December 13, 2004 10:51 PM UTC

That works great - thanks!

Loader.
Up arrow icon