@Anonymous
Ah, gotcha...I should have known from before. It is just in View mode!
So, there is no way to wrap text in the combobox. The only real option you would have would be to use a label which does have a wrap capability.
You can do some switching of controls based on the form mode.
So for example, you can add a label to that datacard with the following things done:
- Set the Visible property formula to : Parent.DisplayMode = DisplayMode.View
- Set the Wrap on (true)
- Set the Text property to : Concat(yourCombobox.SelectedItems, Role & ", ") (I believe it was Role in the selectedItems, if not, change to the proper column name)
The, set the Combobox Visible property to:
!(Parent.DisplayMode = DisplayMode.View)