Announcement

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

    ButtonItem and MenuButton dont have a background

    Hi there,
    there seems to be a bug, that ButtonItem and MenuButtons dont have a background color anymore with the latest nightly.
    This is reproducable with the latest Firefox Version 56.0.1 (64-Bit). But not in Chorme or Internet Explorer.

    With the Verison v11.1p_2017-10-19 Pro with Firefox

    With the latest nightly version (v11.1p_2017-10-20 Pro) with Firefox

    Code:
    Code:
    Canvas.resizeControls(4);
    Canvas.resizeFonts(2);
    isc.VStack.create({
        membersMargin:10,
        members:[
            isc.DynamicForm.create({
                ID: "contactForm",
                width: 400,
                wrapHintText: false,
                fields: [
                    {name:"foo", showTitle:false},
                    {name:"button1", startRow:false, editorType:"ButtonItem", title:"xxx"},
                    {name:"moo", showTitle:false},
                    {name:"button2", width:100, startRow:false, editorType:"ButtonItem", title:"xxx"}
                ]
            }),
            isc.HStack.create({
                membersMargin:10,
                members:[
                    isc.MenuButton.create({
                        title:"Menu"
                    }),
                    isc.Button.create({
                        title:"Button"
                    }),
                    isc.MenuButton.create({
                        title:"Menu 2",
                        autoFit:true
                    })
                ]
            })
        ]
    });
    Best regards

    #2
    We see the issue and we'll update here when it's been fixed.

    Comment


      #3
      Is there any update?
      In SmartClient_v111p_2017-10-25_Pro the bug persists and we would like to update to a stable version because of the bug in https://forums.smartclient.com/forum...rlapping-texts.

      Kind regards

      Comment


        #4
        Yes, it was fixed yesterday and you can retest with today's build.

        However, note that the native Chrome 61 behavior change that caused this and related issues recently has apparently been fixed in Chrome 62 - all our workarounds have been altered to run only for Chrome 61.

        Our advice would be to update Chrome, which is automatically pushed out anyway.

        Comment


          #5
          Fix confirmed in SmartClient_v111p_2017-10-26_Pro.
          Thanks.

          Comment


            #6
            Hi Isomorphic,

            I'm pretty sure you read that anyway and I'm also not sure this is related to this Chrome 61 bug(?)/change, but in GWT 2.8.2, also something was done to handle a change in Chrome behavior.
            I saw this by chance and thought that it might be important to you as well.

            Chrome 61 removed functionality that had been used for reading the absolute top/left values. The internal implementation has been updated to reflect modern standards.
            Best regards
            Blama

            Comment

            Working...
            X