Hai i need to Number each rows IN "Row Header" of that row.
First of all, i don't even know how to Get/Set Row Header?
PLease Help me ..
With Regards,
Janani.S
Hi,
These are call RowSelectors. They have numbering capability built-in.
So all you have to do is something like this:
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { UltraGridLayout layout = e.Layout; UltraGridOverride ov = layout.Override; ov.RowSelectorNumberStyle = RowSelectorNumberStyle.RowIndex; }
How can I customize the text that needs to be shown on a row header?
Is it possible with v12.1 libs?
Thanks! Appreciate the help