Hi,
In Ultracombo i have added one column --All---.
When I Short the column ascending, Descending 'All' Value going Down.
It should not Go down. Always on Top.
Is it possible.
Thank you
Try this:
private void ultraCombo1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti; e.Layout.Override.FixedRowStyle = Infragistics.Win.UltraWinGrid.FixedRowStyle.Top; // Assuming that the "--All--" row is the first one. e.Layout.Rows[0].Fixed = true; }
Hi Mike,
Thanks for your quick reply.
Its working fine