Hello everyone,
I have a customized dashboard that displays a couple of custom BAQs. In these BAQs I group the results by part number, and collapse the groups so that the only open one is the top part number.
To help make things a bit more clear, I would like to change the font for any open group to bold. Barring that, I would like to set the top part number in the view to be bold.
I see that I can change the font properties for the grid item, but it changes the font for the entire grid. I started looking through the object explorer methods and properties for EpiDataView, but I didn’t find anything obviously helpful.
Is there a way to change the font for a single row in a grid?
Alot of the Epi stuff is based on and compatible with the infrigistics library, which has much better documentation than the Epi stuff. Here’s their documentation on the UltraGridRow. Documentation Archives | Infragistics
Yes! Thank you! I think this is close to what I need! I was hunting around in infragistics, but couldn’t find this.
This code sets the row of data to bold. Is there a way to set the grouping to bold? I grouped on part number, so I would like the part number to be bold, and the row to be normal.
Thanks!
Nate
I gotcha, there should be a way but I don’t know it off the top of my head. I would go up one level of inheritance and try to find a class that has a name that sounds like it would work haha.
So looking through the UltraWinGrid classes (parent to UltraGridRow), I see an UltraGridSummaryRow class that may do the trick. That sure does sounds like what you are referring to, could be worth a shot.
That may be the one at the bottom now that I think about it (Where your Avg, Sum, Min, Max values go)
Do you want all your row groups or just the one to be bold? Maybe the UltraGridGroupByRow is meant to reference a single GroupByRow. For the UltraGridRow, I think it has to be set to a certain row. Maybe the same goes for the UltraGridGroupByRow.