Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    MultiComboBox has wrong width

    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).

    Click image for larger version

Name:	20160622-104140.png
Views:	40
Size:	3.3 KB
ID:	238755
    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"
            }
        ]
    });
    Best regards

    #2
    Any news about this?
    If nobody responds after 3 days I'm wondering if this issue is under investigation or simple has been dropped.
    It would help to get a ping back if it is under investigation otherwise I need to write a reminder.

    Best regards

    Comment


      #3
      It's being looked at right now and an update will follow.

      Comment


        #4
        We've made a change to address this width issue - you can test it out in builds dated July 1 and later

        Comment

        Working...
        X