Hi there,
Is it possible to prevent users from dragging a column header under another one while still being able to re-arrange them horizontally? See the attached screenshot...
Cheers,
Dmitry
thank you everyone. It worked!
Hello Dmitry,
You can set the AllowFieldMoving property to WithinLogicalRow and you will not be able to create another row by dragging the headers:
xamDataGrid1.FieldLayoutSettings.AllowFieldMoving = AllowFieldMoving.WithinLogicalRow;
Hi Dmitri,
Yes you can. You should set the AllowFieldMoving for your FieldLayout to WithinLogicalRow.
XamDataPresenter.FieldLayoutSettings.AllowFieldMoving = AllowFieldMoving.WithinLogicalRow;
Hope this helps.
Sincerely,
Horen Kirazyan
Anyone? It has to be simple but we could not find anything in the documentation ...