Announcement

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

    ToolStripResizer working but image not shown

    Hi,

    The ToolStripResizer added to ToolStrip as in the following example is working but no visible:

    Click image for larger version

Name:	ToolStripResizer.gif
Views:	63
Size:	152.7 KB
ID:	261281
    Code:
    package pl.com.tech4.client;
    
    import com.google.gwt.core.client.EntryPoint;
    import com.smartgwt.client.widgets.form.fields.FormItem;
    import com.smartgwt.client.widgets.toolbar.ToolStrip;
    
    public class MainEntryPoint implements EntryPoint {
    
        @Override
        public void onModuleLoad() {
    
            layout();
        }
    
        private void layout() {
    
            ToolStrip ts = new ToolStrip();
            FormItem fi = new FormItem();
            ts.addFormItem(fi);
            ts.addResizer();
            ts.draw();
        }
    
    }
    Thanks,
    MichalG

    SmartClient Version: SNAPSHOT_v12.1d_2020-03-04/LGPL Development Only (built 2020-03-04)
    Chromium 78.0.3904.108 (Build) (64-bit) and other tested browsers.
    Graphite skin and other skins.

    #2
    We made a change to address this issue and it should be available as of tomorrow's builds (March 11).

    Regards
    Isomorphic Software

    Comment


      #3
      Verified as fixed in v12.1d_2020-03-17/LGPL.
      Thanks,
      MichalG

      Comment

      Working...
      X