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
835
Issue with CheckBox in the header of grid
posted

Hi, i was using a grid with a CheckBox in the header. Now i want to group the items and i was succeed in it also. When i checked  the CheckBox in the header of the particular group, all the items of that group are also checked. It seems very good for me.

But when i checked the CheckBox as i marked with red circle in the attachment, i want all the items to be checked, which i was able to achieve before grouping the items.

 

Parents
No Data
Reply
  • 6158
    Suggested Answer
    Offline posted

    Hello.

    By default,  the synchronization resolves to work on a RowsCollection basis. As such, checking the checkbox on the header for the FilterRow will not affect any of the datarows.

    You can specify the synchronization to work on a Band level (i.e affect all the UltraGridRows within the UltraGridBand) by changing the HeaderCheckBoxSynchronization property to Band. This can by done on either the column or the band level as this property is exposed on both the Column's Header and the Band's Override.

    If you require further assistance, feel free to ask.

    Thanks,

    Chris

Children