I have parent-child relationship A-B that Infragistics by default shows like this
+ A col1 col2 col3
B col1 col2 col 3
I want to make changes to this default display.
1. Get rid of the indentation i.e B is right below A. That way col1 would be below col1 from the other band and col2 under col2, etc
B col1 col2 col3
2. Replace "+" with something like a down chevron icon and "-" with a up chevron icon
3. Remove the dotted lines (of the tree structure) that links the two bands
First of all, set the indentation to 0. I think it works best if you set it for both bands. This will also, I believe, hide the dotted line row connectors.
ultraGrid1.DisplayLayout.Bands["A"].Indentation = 0; ultraGrid1.DisplayLayout.Bands["B"].Indentation = 0;
ultraGrid1.DisplayLayout.Bands["A"].Indentation = 0;
ultraGrid1.DisplayLayout.Bands["B"].Indentation = 0;
Thanks! How about replacing the +/- with two chevron icons? Is there a property to help do that?
No, there's no property. But you could modify the Expansion indicators using a DrawFilter or (I think) you can modify the appearance of them using AppStylist.
vrn said:- If I would like to hide the vertical line running from the top band to lower band is there a way?
You can set grid.DisplayLayout.RowConnectorStyle to None.
vrn said:- When I expand the second band, the column header of the first band repeats after all the records from the second bands are displayed. Is there a way to make the first band's column header not showing a second and subsequent times?
Yes, check out the HeaderPlacement property.
Mike Saltzman"] No, there's no property. But you could modify the Expansion indicators using a DrawFilter or (I think) you can modify the appearance of them using AppStylist.
Mike,
- If I would like to hide the vertical line running from the top band to lower band is there a way?
- When I expand the second band, the column header of the first band repeats after all the records from the second bands are displayed. Is there a way to make the first band's column header not showing a second and subsequent times?
Thanks!