Is there Option to select Multiple value in EpiUltraCombo

Hello guys,

In Epicor Control, do we have combo where I can select multiple record. In Dashboard, I am adding EpiUltraCombo but I required multi selection. Is this possible?

Hope there is way… :slight_smile:
Hanky

Yep. Here is some code I used to do that:

cboCustComplaints = your combo

cboCustComplaints.CheckedListSettings.EditorValueSource = Infragistics.Win.EditorWithComboValueSource.CheckedItems;
cboCustComplaints.CheckedListSettings.CheckStateMember = "Your db field name here";
Infragistics.Win.UltraWinGrid.UltraGridColumn column1 = cboCustComplaints.DisplayLayout.Bands[0].Columns["Your db field name here"];
Infragistics.Win.CheckEditor checkEditor1 = new Infragistics.Win.CheckEditor();
checkEditor1.CheckAlign = System.Drawing.ContentAlignment.MiddleCenter;
column1.Editor = checkEditor1;
column1.Header.VisiblePosition = 0;
column1.Hidden = false;
cboCustComplaints.CheckedListSettings.ItemCheckArea = Infragistics.Win.ItemCheckArea.Item;
cboCustComplaints.CheckedListSettings.ListSeparator = "~";
4 Likes

Could you kindly give the complete example? the data source is a db field. Kindly give complete code. Can’t get it to work

I posted the complete code above. Can you post what you have?