Announcement

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

    Tahoe Skin - comboBox picker not properly aligned in IE - hard to open comboBox

    Hi there
    The picker of a Combobox in IE (Version 11.0.9600.18738) seems to be not properly aligned:


    Version: SmartClient_v111p_2017-07-19_Pro
    Browser: Firefox 54.0.1 (32-Bit)
    Skin: Tahoe
    Density: Medium

    Also it seems that the picklist will only appear if you hit the blue arrow exactly. This happens in every browser
    Here are 2 gifs of the skin Enterprise:


    And here with the skin Tahoe, it's quite harder to click the "sweet spot" for opening the picklist.


    Code for reproduction:
    Code:
    Canvas.resizeControls(4);
    Canvas.resizeFonts(2);
    isc.DynamicForm.create({
        "ID": "theForm",
        "width": "100%",
        "fields":
        [{
                "ID": "theComboBox",
                "name": "theComboBox",
                "title": "Test",
                "type": "text",
                "editorType": "comboBox",
                "width": "100",
                "selectOnClick": true,
                "readOnlyDisplay": "static",
                "textMatchStyle": "substring",
                "allowEmptyValue": true,
                "valueMap": {
                    1: "alpha",
                    2: "beta",
                    3: "gamma"
                }
            }
        ]
    })

    #2
    Thanks for the notification. We're taking a look

    Regards
    Isomorphic Software

    Comment


      #3
      We've made a change which should address this issue. Please try the next nightly build dated July 21 or above

      Regards
      Isomorphic Software

      Comment


        #4
        Thanks,
        confirming both bugs fixed in the build of 21st.

        Best regards

        Comment


          #5
          With the latest Build of the28th there seems to be a misalignment on Chrome (Version 59.0.3071.115 (Offizieller Build) (64-Bit)) in the Tahoe Skin with medium density.
          The picker-icon is not aligned anymore.
          Example: http://www-demos.smartclient.com/sma...sizeIncrease=4


          ​Best regards

          Comment


            #6
            SmartClient Version: v11.1p_2017-07-30/AllModules Development Only (built 2017-07-30)

            Safari, Chrome on OSX

            this problem seems still present, though is more evident with the smaller density settings.
            It's ok on FF.

            Comment


              #7
              SmartClient Version: SNAPSHOT_v12.0d_2017-08-01/AllModules Development Only (built 2017-08-01)

              Chrome on OSX


              Hello, maybe I've found a way to replicate the behaviour also described in this thread http://forums.smartclient.com/forum/...ge-icons-moved

              Please go to a sample like #helloButton, medium density and run this code:

              Code:
              isc.Window.create({
                  autoSize: true,
                  items: [
                      isc.DynamicForm.create({
                          items: [
                              {name: "test", type: "select", valueMap: ["foo", "bar"]}
                              ]
                      })
                  ]
              })
              this is what I see:
              Click image for larger version

Name:	2017-08-02 09.13.51.jpg
Views:	173
Size:	11.2 KB
ID:	248038
              Strange thing is that if I go to the #variousControls sample, where all picker icons are displayed correctly, and run again the previous code, I see it also correctly aligned:
              Click image for larger version

Name:	2017-08-02 09.17.10.jpg
Views:	150
Size:	10.8 KB
ID:	248039

              I also see a similar behaviour in my actual application, where some picker icons are vertically misaligned and others not.

              I add a third image with the overlapping of the two previous ones:
              Click image for larger version

Name:	2017-08-02 09.13.51b.jpg
Views:	69
Size:	7.1 KB
ID:	248040
              the first image is on the right, the second on the left.
              Last edited by claudiobosticco; 1 Aug 2017, 23:32.

              Comment


                #8
                We've made a change to address the vertical misalignment in Chrome.
                This will be present in the next nightly build (Dated Aug 4).

                We're also looking at the other thread you reference (http://forums.smartclient.com/forum/...ge-icons-moved) and will follow up there

                Regards
                Isomorphic Software

                Comment


                  #9
                  I can confirm the changes present in SmartClient_v111p_2017-08-04_Pro fixes all described bugs in this thread.
                  Also the selectItem described from claudiobosticco.

                  Best regards

                  Comment


                    #10
                    Yes, as SimonF said, and is looking good also in my application, where I was seeing a more noticeable misalignment.

                    Comment

                    Working...
                    X