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
615
How to Get Row Header in Ultragrid in Vb.net?
posted



 

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

Parents
No Data
Reply
  • 469350
    Offline posted

    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;
            }

Children