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
325
How to customise GroupByRow to look like DataRow
posted

I would like to customise the GroupByRows in my grid so that they look like DataRows. It looks like I will have to do this by implementing the IUIElementCreationFilter interface. However, I don't have any idea where to start when it actually comes to drawing the appropriate columns and writing the header text.

 Also, when my data I grouped I would only like the column headers to appear once at the top of the grid and not at every grouping level.

 Thanks in advance.

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

     Hi Jay,

        Re-creating an entire row with a CreationFilter is a huge task and should not be undertaken lightly. You are talking about several days work here, at least. It's probably not worth the effort unless you can't acheive what you want in any other way. 

        What exactly do you mean when you say you want the GroupByRow to look like a regular row? A GroupByRow only has a single value, it doesn't really have values for any of the other cells. So what would it look like if it were a regular row?

        Regarding the column header, I think you are looking for the HeaderPlacement property on the Override. 

Children