Hi,
The ToolStripResizer added to ToolStrip as in the following example is working but no visible:
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.
The ToolStripResizer added to ToolStrip as in the following example is working but no visible:
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(); } }
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.
Comment