Hi there,
Using a Combobox and a MultiCombobox in the same Dynamicform and one after another, there seems to be a slight difference in the calculated width of the elements.
The MultiCombobox is some pixels wider than the Combobox above. This the example below every item should have the same width.
This is reproducible in all browsers with the latest nightly (SmartClient_v110p_2016-06-21_Pro).
Code for reproduction
Best regards
Using a Combobox and a MultiCombobox in the same Dynamicform and one after another, there seems to be a slight difference in the calculated width of the elements.
The MultiCombobox is some pixels wider than the Combobox above. This the example below every item should have the same width.
This is reproducible in all browsers with the latest nightly (SmartClient_v110p_2016-06-21_Pro).
Code for reproduction
Code:
isc.DynamicForm.create({ "ID" : "comboBoxFalseWidthForm", "hideUsingDisplayNone" : false, "width" : "400", "height" : "100", "colWidths" : [150, "*"], "border" : "1px solid blue", "fields" : [{ "ID" : "comboBox", "name" : "comboBox", "title" : "comboBox", "type" : "ComboBox", "width" : "200" }, { "ID" : "multiComboBox", "name" : "multiComboBox", "title" : "multiComboBox with different width", "type" : "MultiComboBox", "width" : "200", "layoutStyle" : "vertical" }, { "ID" : "textArea", "name" : "textArea", "title" : "textArea", "type" : "TextArea", "width" : "200" }, { "ID" : "text", "name" : "text", "title" : "text", "type" : "Text", "width" : "200" } ] });
Comment