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?
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.
OK.... Any way to do it for the entire grid?