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
35
Avoid grouping on null values..
posted

hi,

I am adding items in UltraGrid having 3 columns.

Columns are:   Adaptation   |  Name   |  Description  

i have set grouping on 'Adaptation' column.

Also i have set property GroupByRowDescriptionMask = "[value] ([count])"

but when any blank value comes under Adaptation, It groups blank values under one group , and group title text sets to - " " (Count)

For E.g.: " " (2)

 

I want to avoid grouping for blank values under column "Adaptation" and should not have any group Row title name. 


Thanks

Rohit

 

 

Parents
No Data
Reply
  • 440
    posted

    Rohit

    Logic indicates to me that this is unlikely to be possible using this technique.

    My approach would be to somehow ensure that the 'blank' grouping either doesn't appear at all (by not adding rows where the adaptation is null) or moving these to the bottom of the list so that the user won't normally see them (by changing the null to something like 'zzz').

    Bit of a hack really but practically might be OK.

    Hope that helps.

    Jerry

Children