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
2490
_InitializeRow
posted

It's normal when I load the data on grid.DataSource the child band don't fire on InitializeRow just the BAND(0) ?

I add this on my code for initialize the child band (for each...)

 

 

 

If e.Row.Band.Index = 0 Then

...

 

 

 

 

 

 

 

for

 

 

Each row As UltraGridRow In e.Row.ChildBands(0).Rows

 

 

Next

END if

 

 

If e.Row.Band.Index = 1 Then

...

END IF

Francois

Parents
  • 71886
    Offline posted

    Hello Francois,

    The event might not be firing because your grid is not being initialized with expanded rows. The event will fire when the child rows are being displayed(expanded). You could try this in my sample which is attached to this post.

    Please do not hesitate to contact us if you need any additional assistance.  

Reply Children