Announcement

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

    Multiple selection SelectItem UI not working properly in v11.1p_2017-08-14/Pro Deployment

    It was working properly in "v11.1p_2017-07-21/Pro Deployment"

    To reproduce:
    Code:
            isc.DataSource.create
            ({
                ID:"dsTest",
                clientOnly : true,
                fields :
                [
                    { name : 'caption', type : 'text' },
                    { name : 'value', type : 'text' }
                ],
    
                cacheData : [
                    { caption : 'First', value : 1 },
                    { caption : 'Second', value : 2 },
                    { caption : 'Third', value : 3 },
                    { caption : 'Fourth', value : 4 },
                ]
            });
    
    
            var ctl = {
                    name : 'status',
                    title : 'Status',
                    multiple : true,
                    optionDataSource : 'dsTest',
                    editorType : 'SelectItem',
                    displayField : 'caption',
                    valueField : 'value',
                };
    
    
            isc.DynamicForm.create ({
                items: [ ctl ]
            }).show();
    Try checking some elements in the list.
    Checkbox won't appear - the row is highlighted and the text in the checkbox is properly updated as well.
    Try unchecking an higlightted item
    Checkbox appears on other highlighted items.
    Last edited by Isomorphic; 15 Aug 2017, 13:51.

    #2
    Hi Isomorphic,

    I noticed the same problem, but did not create a test case, yet.

    Best Regards
    Blama

    Comment


      #3
      This should already be fixed ... as of the 2017-08-15 builds.

      Comment


        #4
        Originally posted by Isomorphic View Post
        This should already be fixed ... as of the 2017-08-15 builds.
        Good :) Thanks!

        Comment

        Working...
        X