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
490
How can i excluded column from the GridColumnChooser ?
posted

i have WinGrid that have 6 column col1,col2,col3 not hidden but col4 ,col5 hideen and col6 no need to dispaly it for the users i am use it for calculation some fields .

My Question How to  excluded column col6  from the GridColumnChooser

Parents
  • 17259
    Suggested Answer
    Offline posted

    Get a reference to the column, usually by:

    grid.DisplayLayout.Bands[0].Columns[indexOrName]

    and set:

    column.ExcludeFromColumnChooser = true;

Reply Children
No Data