Announcement

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

    Smartclient 10.1 - MultiComboBoxItem fails when removing an item

    Hi there,
    Removing an selected item of a MultiComboBoxItem does fail.

    Tested with the latest edition: SmartClient_v101p_2016-01-21_Pro
    Reproducable in all current Browsers
    Click image for larger version

Name:	Animation 31.gif
Views:	68
Size:	143.0 KB
ID:	234453

    This case should really be in a automated testcase. In Smartclient 10.0 this worked like expected.

    Code for reproduction:
    Code:
    isc.Log.setDefaultPriority(2);
    isc.VLayout.create({
        "ID" : "theRootLayout",
        "hideUsingDisplayNone" : false,
        "leaveScrollbarGap" : false,
        "members" :
        [
            isc.DynamicForm.create({
                "ID" : "theForm",
                "width" : "100%",
                "isGroup" : true,
                "groupTitle" : "TheTopic",
                "groupBorderCSS" : "1px solid #BBBBBB",
                "margin" : "5px",
                "padding" : 4,
                "hideUsingDisplayNone" : false,
                "numCols" : 4,
                "autoFocus" : true,
                "selectOnFocus" : true,
                "canEdit" : true,
                "readOnlyDisplay" : "static",
                "fields" :
                [{
                        "ID" : "theMultiComboBoxItem",
                        "name" : "theMultiComboBoxItem",
                        "title" : "",
                        "editorType" : "MultiComboBoxItem",
                        "showTitle" : false,
                        "width" : 200,
                        "readOnlyDisplay" : "static",
                        "layoutStyle" : "verticalReverse",                    
                        "valueMap" : {
                            1 : "New York",
                            2 : "Madrid",
                            3 : "Berlin",
                            4 : "Paris"
                        }
                    }
                ],
                "values" : {
                    "theMultiComboBoxItem" :
                    [1, 2, 3]
                }
            })
        ]
    })
    Best Regards

    #2
    Thanks for the notification and test case.
    Actually this was a temporary regression which has already been resolved. Please try the latest nightly build (Jan 27) to pick up a fix for it.

    Regards
    Isomorphic Software

    Comment


      #3
      Fix does also work, thanks!

      Regards
      Simon

      Comment

      Working...
      X