Hi,
I have a grid which has a summary row where I have placed custom buttons using creation filters. The grid is at band 1 and I wanted to hide the summary count without hiding the buttons. When I try to hide the summary row, the entire summary row gets hidden along with the custom buttons.
Above is the screen shot of the child band which I have described.
Any help is appreciated.
If this is the only summary, then you won't be able to hide it using any properties on the grid. You can hide the summary using the Hidden property on the SummarySettings, but that will end up hiding the entire summary area since it's the only one.
So you will have to use your CreationFilter to hide it. You don't want to remove the entire summary row, because you need that for your buttons. You need to trap for the element that shows the count. You can find out what element it is by using the Infragistics UIElementViewer Utility.
If I recall correctly, it's probably a SummaryValueUIElement.
I wanna hide the count that is getting displayed without hiding the buttons in the summary row.
When you add a summary the Add method returns an object of type SummarySettings; this class exposes a DisplayFormat property, which you can use to change the format used to present the summary.