Reputation: 909
Is there a way to lock down column positions and / or visibility of columns in a grid? This includes removing the ability to move the columns around by dragging them.
Upvotes: 0
Views: 113
Reputation: 8278
Take a look at the Allow
properties of PXGridColumn
element. Judging by their names I would think that AllowMove
and AllowShowHide
can help achieve your goal.
Example:
<px:PXGridColumn DataField="BranchID"
AllowMove="false"
AllowShowHide="false"
AllowResize="false"
AllowSort="false"
AllowFilter="false" />
Upvotes: 2