Is there a way to show the data being resized while resizing a column? Currently the cell width stays static until you release from the drag operation.
Hi singlemat,
I appologize for the delayed reply. If I understood you right, you need immediate resizing instead of the deffered one the XamDataGrid provides by default. So in order to achieve the desired behavior, you may want to try setting the "ResizingMode" property of FieldLayoutSettings to "Immediate". E.g.:
[yourXamDataGrid].FieldLayoutSettings.ResizingMode = Infragistics.Windows.Controls.ResizingMode.Immediate;
Hope this helps.
Anyone?