views:

67

answers:

1

I am brand-new to Infragistics grids (used DevExpress before) and need to set an overall Band override on my grid to stop the '+' expansion indicator when there are no child rows( Override.ExpansionIndicator = ShowExpansionIndicator.CheckOnDisplay).

My grid is bound to an object that implements IBindingList, so I gather that any performance hit will be minmial.

My question is where/when is best to set the Override? I don't see me having much luck with DisplayLayout.Bands[n] until the bands actually exist...

EDIT: At the moment I am doing it just after the data is bound - will that do?

A: 

Just after the data bind seems to work Ok so I'll consider that the answer.

kpollock