Is it possible ot have a column not allowed to be moved, but the rest of the columns are moveable?
Example
e.Layout.Bands[0].Columns[0].Layout.Override.AllowColMoving =
Infragistics.Win.UltraWinGrid.AllowColMoving.NotAllowed;
When I use this code, no columns in the table are moveable.
If this is not possible, is there any other way to "lock" a column.
Mike,
I have the exact same to have a second band of data's columns mimic the sizing swapping etc. of another band. Would it be possible for you to include a brief generic example of the code that would be in your AfterColPosChanged event handler? Assuming that the grid had 2 bands of data (Band1 and Band2) each with just 3 columns (Col1, Col2, and Col3)? I'd greatly apprecaite it.
Steve
It sounds like you somehow turned on AllowColSwapping.
You could trap the AfterColPosChanged event and then modify the VisiblePosition of the columns in the other bands so they match the band being altered.