Announcement

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

    #16
    Originally posted by Isomorphic View Post
    Which skin?

    We assume one of the Enterprise set (Graphite, Enterprise[Blue])?

    Do you see the same UI correctly in Tahoe in 11.1?

    We ask because some changes for Tahoe (which forces both classes you mention to extend different base classes) could result in double application of "density" fontsettings.

    Please also clarifty OS version.
    Tahoe skin - OSX
    I see them correct in Graphite skin

    Comment


      #17
      When you say that ToolStripMenuButton and ToolStripButton text is "3px bigger than the rest", what do you mean? Can you show a screenshot or some sample code?

      Comment


        #18
        Hello, please try this test case:

        Code:
        isc.IButton.create({
            title: "File",autoFit:true, top:7
        });
        
        isc.Menu.create({
            ID: "menu",
            autoDraw: false,
            showShadow: true,
            shadowDepth: 10,
            data: [
                {title: "New", keyTitle: "Ctrl+N", icon: "icons/16/document_plain_new.png"},
                {title: "Open", keyTitle: "Ctrl+O", icon: "icons/16/folder_out.png"},
                {isSeparator: true},
                {title: "Save", keyTitle: "Ctrl+S", icon: "icons/16/disk_blue.png"},
                {title: "Save As", icon: "icons/16/save_as.png"},
                {isSeparator: true},
                {title: "Recent Documents", icon: "icons/16/folder_document.png", submenu: [
                    {title: "data.xml", checked: true},
                    {title: "Component Guide.doc"},
                    {title: "SmartClient.doc", checked: true},
                    {title: "AJAX.doc"}
                ]},
                {isSeparator: true},
                {title: "Export as...", icon: "icons/16/export1.png", submenu: [
                    {title: "XML"},
                    {title: "CSV"},
                    {title: "Plain text"}
                ]},
                {isSeparator: true},
                {title: "Print", enabled: false, keyTitle: "Ctrl+P", icon: "icons/16/printer3.png"}
            ]
        });
        
        isc.ToolStripMenuButton.create({
            ID: "menuButton",
            title: "File",   
            menu: menu
        });
        
        isc.ToolStrip.create({
            width: 80, height:24,left:40, 
            members: [menuButton]
        });
        With Tahoe and spacious settings, font-size is 14px for the IButton, and 17px for the ToolStripMenuButton:

        Click image for larger version

Name:	2017-04-09 01.57.21.jpg
Views:	173
Size:	100.8 KB
ID:	243984

        Click image for larger version

Name:	2017-04-09 01.57.13.jpg
Views:	139
Size:	60.8 KB
ID:	243985

        Comment


          #19
          I forgot to say that I tested it in the online showcase, build
          SmartClient Version: SNAPSHOT_v11.1d_2017-04-08/AllModules Development Only (built 2017-04-08)
          Chrome on OSX

          Comment


            #20
            Ok, this has been fixed for builds dated April 11 and later

            Comment


              #21
              Originally posted by Isomorphic View Post
              Ok, this has been fixed for builds dated April 11 and later
              thanks, now I see the same font-size using
              SmartClient Version: SNAPSHOT_v11.1d_2017-04-11/AllModules Development Only (built 2017-04-11)

              Comment


                #22
                SmartClient Version: SNAPSHOT_v11.1d_2017-04-27/Enterprise Development Only (built 2017-04-27)

                Chrome on OSX

                Hello, using the latest build there's a problem with the ButtonItems, you may see it in the #formsValidationFieldBindingV sample: when you click the button, its size changes.

                Comment


                  #23
                  Thanks for pointing this out. Transient regression, fixed for tomorrow's build.

                  Comment


                    #24
                    On the latest showcase (4-28-2017) I get 3 404s for the Tahoe skin:

                    http://www.smartclient.com/smartclie...ne_stretch.gif
                    http://www.smartclient.com/smartclie...seline_end.gif
                    http://www.smartclient.com/smartclie...line_start.gif

                    Although they DO exist in png format.

                    Comment


                      #25
                      Originally posted by kylemwhite View Post
                      On the latest showcase (4-28-2017) I get 3 404s for the Tahoe skin:

                      http://www.smartclient.com/smartclie...ne_stretch.gif
                      http://www.smartclient.com/smartclie...seline_end.gif
                      http://www.smartclient.com/smartclie...line_start.gif

                      Although they DO exist in png format.
                      same here with latest SmartClient Version: SNAPSHOT_v11.1d_2017-05-04/Enterprise Development Only (built 2017-05-04)
                      Together with missing icons from post #13, are the only glitches still open in this thread.

                      Comment


                        #26
                        [Duplicate - please delete]
                        Last edited by jaredm; 5 May 2017, 15:38.

                        Comment


                          #27
                          SmartClient Version: v11.1p_2017-09-23/AllModules Development Only (built 2017-09-23)
                          Originally posted by claudiobosticco View Post
                          indent_Down.png
                          outdent_Down.png
                          text_list_numbers_Down.png
                          text_list_bullets_Down.png
                          text_list_edit_Down.png
                          not a high priority for me, but I noticed that those icons are still missing

                          Comment


                            #28
                            Those buttons don't have "down" icons - we've fixed it for builds dated October 5 and later, by setting showDownIcon: false on those buttons.

                            Comment


                              #29
                              great, thanks.

                              Comment

                              Working...
                              X