How do I hide the indicator (+/-) on the band row when there are no child rows?
Using the Ultra Grid designer or in code you have to set the override expansion indicator property of the band in question:
Band.Override.ExpansionIndicator = ShowExpansionIndicator.CheckOnDisplay
Hi Smith,
using this "Band.Override.ExpansionIndicator = ShowExpansionIndicator.CheckOnDisplay" able to remove expansion indicator but some space are there instead of that expansion indicator help me out in this problem.... thanks in advance
Steve Smith said: Using the Ultra Grid designer or in code you have to set the override expansion indicator property of the band in question: Band.Override.ExpansionIndicator = ShowExpansionIndicator.CheckOnDisplay
Perfect, thanks
Note that in order to determine whether a parent row has child rows, the grid has to ask the BindingManager to retrieve the child rows collection. This could cause some performance issues, depending on the data source (which is why the grid does not do this by default).