Hi Isomorphic,
in the previous version of smartGWT, the width of SelectItem and SpinnerItem was the same in my app, but not in the current one (12.0p).
Here you can see how it looks like now:
I think it just happens when TitleOrientation is TOP.
Here is my test case:
Best regards
Pavo
in the previous version of smartGWT, the width of SelectItem and SpinnerItem was the same in my app, but not in the current one (12.0p).
Here you can see how it looks like now:
I think it just happens when TitleOrientation is TOP.
Here is my test case:
Code:
package com.smartgwt.sample.client; import com.google.gwt.core.client.EntryPoint; import com.smartgwt.client.Version; import com.smartgwt.client.core.KeyIdentifier; import com.smartgwt.client.types.TitleOrientation; import com.smartgwt.client.util.Page; import com.smartgwt.client.util.PageKeyHandler; import com.smartgwt.client.util.SC; import com.smartgwt.client.widgets.IButton; import com.smartgwt.client.widgets.Window; import com.smartgwt.client.widgets.events.ClickEvent; import com.smartgwt.client.widgets.events.ClickHandler; import com.smartgwt.client.widgets.form.DynamicForm; import com.smartgwt.client.widgets.form.fields.SelectItem; import com.smartgwt.client.widgets.form.fields.SpinnerItem; import com.smartgwt.client.widgets.layout.VLayout; public class BuiltInDS extends VLayout implements EntryPoint { private IButton recreateBtn; public void onModuleLoad() { KeyIdentifier debugKey = new KeyIdentifier(); debugKey.setCtrlKey(true); debugKey.setKeyName("D"); Page.registerKey(debugKey, new PageKeyHandler() { public void execute(String keyName) { SC.showConsole(); } }); setWidth100(); setHeight100(); recreateBtn = new IButton("Recreate"); recreateBtn.addClickHandler(new ClickHandler() { @Override public void onClick(ClickEvent event) { new MyWindow().show(); } }); addMember(recreateBtn); new MyWindow().show(); draw(); } private class MyWindow extends Window { public MyWindow() { setWidth(300); setHeight(300); setMembersMargin(0); setModalMaskOpacity(70); setTitle(" (" + Version.getVersion() + "/" + Version.getSCVersionNumber() + ")"); setShowMinimizeButton(false); setIsModal(true); setShowModalMask(true); centerInPage(); DynamicForm dF = new DynamicForm() { { setTitleOrientation(TitleOrientation.TOP); SelectItem selectItem = new SelectItem("commonName"); selectItem.setWidth("*"); SpinnerItem spinnerItem = new SpinnerItem("commonName"); spinnerItem.setWidth("*"); setFields(selectItem, spinnerItem); } }; addItem(dF); } } }
Pavo
Comment