Group: Forum Members
Posts: 2K,
Visits: 6.6K
|
You don't need to worry about the Items collection. This is what you'd use to fill the combo manually, rather than using SF to fill it for you.
I'd look into three other things:
- Did you setup the PopulationDataSourceSettings correctly? You need to set the Display Member Format String (indicating what is displayed when the drop down is closed) and the Drop-Down Display Format String (indicating what is displayed when the combo is opened).
- Did you set the ColumnSeparator property? The ColumnSeparator should match the character used in the Drop-DownDisplay Format String (e.g. if you set this to "{0}|{1}", then the ColumnSeparator would be "|").
- Have you checked that the Fill method is really filling the BO as you expect?
To check the last, set a break after the FillDataTable call and use the data table visualizer to check that the data is being returned correctly.
Check out the Multicolumn sample provided with the SF install also. It pretty clearly shows how to use this feature.
|