Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1360
Hiding a column from the column chooser
posted

Is there a way to stop a specific column from appearing in the column chooser?

I have a hidden column that I dont ever want the user to see so I can hide the column easily enough but they can show it using the column chooser.

Thanks,
Doug

Parents
No Data
Reply
  • 1670
    posted

    Hello dougiejay,

    if you do not want a specific column to be visible inside the Column Chooser dialog you could use the following code to remove it from XamGrid

    this.xamGrid.Columns.Remove(this.xamGrid.Columns[index]); when loading your data .

    HTH, regards Nikola.

Children