hi guys,i want to select all cells of column when cilck the title of column,but there is not methd worked.
i need some help to let it work....
Here's another way to do it:
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { UltraGridLayout layout = e.Layout; UltraGridOverride ov = layout.Override; ov.HeaderClickAction = HeaderClickAction.Select; }
thank you