Announcement

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

  • stonebranch2
    replied
    Thank you

    Leave a comment:


  • Isomorphic
    replied
    This issue should now be resolved. Please try the next nightly build (dated Dec 11 or above) and let us know if you continue to see problems

    Thanks
    Isomorphic Software

    Leave a comment:


  • stonebranch2
    replied
    Hi Isomorphic,

    Here you go.


    Code:
    VLayout main = new VLayout();
            main.setWidth100();
            main.setHeight100();
            ToolStrip toolStrip = new ToolStrip();
            toolStrip.setWidth100();
            toolStrip.setHeight(50);
            toolStrip.addSpacer(5);
            Img logo = new Img("logo.png");
            logo.setAutoWidth();
            logo.setImageType(ImageStyle.CENTER);
            logo.setCursor(Cursor.HAND);
            toolStrip.addMember(logo);
            toolStrip.addFill();
            ToolStripButton button = new ToolStripButton(null, "16x16/button.png");
            toolStrip.addButton(button);
            HLayout bottom = new HLayout();
            bottom.setWidth100();
            bottom.setHeight100();
            main.addMember(toolStrip);
            main.addMember(bottom);
            main.draw();
    Before (SmartClient Version: v12.1p_2021-10-30/Pro Deployment (built 2021-10-30))
    Click image for larger version

Name:	before.png
Views:	110
Size:	1.3 KB
ID:	266977

    After (SmartClient Version: v12.1p_2021-12-02/Pro Deployment (built 2021-12-02))

    Click image for larger version

Name:	after.png
Views:	91
Size:	1.4 KB
ID:	266978

    Thanks

    Leave a comment:


  • Isomorphic
    replied
    Can you show us how to reproduce the toolstrip alignment issue?

    Thanks

    Leave a comment:


  • stonebranch2
    replied
    Hi Isomorphic,

    We noticed that after updating for this fix, members within toolstrips are no longer properly middle aligned on the vertical axis, particularly when setting the toolstrip height explicitly to say 50.

    Did something change here?

    Thanks

    SmartClient Version: v12.1p_2021-12-02/Pro Deployment (built 2021-12-02)

    Leave a comment:


  • stonebranch3
    replied
    This is now resolved. Thanks!

    Leave a comment:


  • Isomorphic
    replied
    We've applied a fix for the oscillation back to SGWT 6.0p/SC 11.0p, which should be in the next nightly build dated 2021-12-02.

    Leave a comment:


  • Isomorphic
    replied
    We've reproduced the problem you mention and are working on a solution.

    Leave a comment:


  • stonebranch3
    replied
    The Portlet issue is resolved; however, I have a similar issue with Tab panes.

    You can reproduce the issue with the following sample code:

    Code:
     public void onModuleLoad() {
            final Label welcomeLabel = new Label();
            welcomeLabel.setContents("Welcome to the application");
            welcomeLabel.setWidth100();
            welcomeLabel.setAlign(Alignment.CENTER);
    
            final VLayout welcomePane = new VLayout();
            welcomePane.setPadding(5);
            welcomePane.setMembersMargin(10);
            welcomePane.addMember(welcomeLabel);
    
            final TabSet tabSet = new TabSet();
            tabSet.setWidth(400);
            tabSet.setHeight(140);
    
            final Tab tabWelcome = new Tab();
            tabWelcome.setTitle("Welcome");
            tabWelcome.setPane(welcomePane);
    
            tabSet.setTabs(tabWelcome);
            tabSet.draw();
        }
    This can also be reproduced with any Showcase sample by just reducing the browser height to the point at which a vertical scrollbar is required for the tab pane.

    Thanks.

    Leave a comment:


  • Isomorphic
    replied
    We weren't accounting for the padding in a portlet body (which is a Layout). This will be fixed in all branches that are still built on a regular basis. In the case of SC/SGWT 12.1, the nightly builds dated 2021-11-20 and beyond should have the fix.

    Leave a comment:


  • Blama
    replied
    Video:
    Click image for larger version  Name:	Flickering.gif Views:	0 Size:	76.0 KB ID:	266856

    Leave a comment:


  • Blama
    replied
    Hi Isomorphic,

    I can see it here as well (v12.1p_2021-11-13, link from #6) as well. FF 94.0.1, Edge 95, no browser zoom. Win 10, 3840x2160 resolution, 250% system zoom. But also happening with 100% system zoom.

    Best regards
    Blama
    Last edited by Blama; 16 Nov 2021, 10:27.

    Leave a comment:


  • stonebranch3
    replied
    Sorry, I've corrected the link in my previous post. It's a different sample.

    I see the issue with Chrome, Firefox, and Edge (all without zoom) on Windows 10.

    Thanks.




    Leave a comment:


  • Isomorphic
    replied
    Something went wrong with your link, but we assume you mean this one:

    https://www.smartclient.com/smartgwt.../#portalLayout

    We were unable to reproduce a flashing scrollbars issue. Please let us know what browser, OS and platform(s) you find it possible to reproduce the problem on, including at least one exact browser size (interior) where you can see the problem.

    Also make sure you aren't using browser zoom on platforms where it cannot yet be fully supported, and please review the new information on flashing scrollbars, including the new section on flashing scrollbars.

    https://www.smartclient.com/smartcli...p..browserZoom

    Note that we have no supported configuration where anyone over here can still reproduce the flashing scrollbar problem with the default level of browser size misreporting compensation.

    Leave a comment:


  • stonebranch3
    replied
    Hi Isomorphic,

    We still see flickering scrollbars occasionally with the Oct 21 build.

    You can reproduce the issue with following showcase example (using Tahoe theme).

    https://www.smartclient.com/smartgwt..._portal_layout

    It occurs when the layout is slightly too small; increasing the size usually resolves it.

    Thanks.
    Last edited by stonebranch3; 16 Nov 2021, 06:45.

    Leave a comment:

Working...
X