How to hide column in column picker

422 views Asked by At

I have a hidden column in Grid but I also wish to hide it in column picker. I need to keep that column in XYZColumns.cs file because I am using it as a quick filter

Any ideas? Thank you.

1

There are 1 answers

1
Xavier Rios On BEST ANSWER

Use the attribute [FilterOnly()].

For example:

[EditLink, Width(300), FilterOnly()]
public String Nombrecli { get; set; }