I have a simple issue, hopefully it's a simple solution. The grids come standard with the ability to drag columns within a grid to be in front of another, behind and you can even stack columns upon one another in a grid. Can you please instruct how I can disable this completely on the grid? My group doesn't want the user to have any ability to re-arrange columns in any way. Thanks everyone!
You can set the FieldLayoutSettings->AllowFieldMoving to No.
Thank you so much for the response, I just need a clarification. From what I read in the link you provided, it appears you need to set this in the code behind is that correct? Is there no way to do it in the xaml? Thank you for your time-
<igDP:XamDataGrid Name="xamDataGrid1">
<igDP:XamDataGrid.FieldLayoutSettings>
<igDP:FieldLayoutSettings AllowFieldMoving="Yes" />
</igDP:XamDataGrid.FieldLayoutSettings>
</igDP:XamDataGrid>
Hi,
Is there any way to disable this for specific columns only, instead of all columns?
Thanks.