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
2114
Do NOT sort on header click
posted

I don't need to do anything when a header is clicked. I don't want to select, nor sort the data.

However I don't see such a choice in the HeaderClickAction list. What to do?

Parents
No Data
Reply
  • 20872
    Offline posted

    Hello serhiol,

    One way to do this would be leaving the default sort behavior and set the following property on the desired column in the IntializeLayout event of the UltraGrid:

    e.Layout.Bands[0].Columns[0].SortIndicator = SortIndicator.Disabled;

    So clicking the column header won't do anything now.

    Please let me know if this is what you are looking for.

     

Children