I have a combo with options of up to 40 characters, then the options are not rendered complete, it shows only the first 29 or 30 characters, is there any way to configure the combo to render my options correctly?
Combo options are displayed in Popup with List inside it. List items are not wrapped. You can make popup bigger:
{ view:“combo”,popupWidth:300,…}
But note that popupWidth should not be bigger than size of mobile display.
It is possible to change line-height of the list items and make their label multiline (viewtopic.php?f=22&t=19915):
.multiline .dhx_list_item{ line-height: 15px; white-space: normal; }…
{ view:“combo”, css:“multiline”,…}
…