pmfith
pmfith

Reputation: 909

Is there a way to lock down column positions and visibility in a grid?

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

Answers (1)

Hugues Beauséjour
Hugues Beauséjour

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

Related Questions