Hi Isomorphic,
After upgrading from "v10.1p_2017-08-10/Pro Deployment (built 2017-08-10)" to "v12.0p_2018-08-28/Pro Deployment (built 2018-08-28)" there appears to be regression with AutoFitTextAreaItem using FirefoxESR 24.8.1.
The text is being clipped, as shown below.
v10.1 Firefox ESR 24.8.1
v12.0p Firefox ESR 24.8.1
v12.0p Internet Explorer 11
v12.0p Chrome 68.0.3440.106
Regards
-----
EntryPoint
After upgrading from "v10.1p_2017-08-10/Pro Deployment (built 2017-08-10)" to "v12.0p_2018-08-28/Pro Deployment (built 2018-08-28)" there appears to be regression with AutoFitTextAreaItem using FirefoxESR 24.8.1.
The text is being clipped, as shown below.
v10.1 Firefox ESR 24.8.1
v12.0p Firefox ESR 24.8.1
v12.0p Internet Explorer 11
v12.0p Chrome 68.0.3440.106
Regards
-----
EntryPoint
Code:
package com.sandbox.client; import com.google.gwt.core.client.EntryPoint; import com.smartgwt.client.data.Record; import com.smartgwt.client.types.Alignment; import com.smartgwt.client.widgets.form.DynamicForm; import com.smartgwt.client.widgets.form.fields.AutoFitTextAreaItem; import com.smartgwt.client.widgets.layout.VLayout; public class Sandbox13 implements EntryPoint { @Override public void onModuleLoad() { DynamicForm form = new DynamicForm(); form.setPadding(5); form.setNumCols(4); form.setLayoutAlign(Alignment.LEFT); AutoFitTextAreaItem autoFitItem = new AutoFitTextAreaItem("autoFitItem", "AutoFitTextAreaItem"); autoFitItem.setColSpan(3); autoFitItem.setCanEdit(Boolean.FALSE); autoFitItem.setCanFocus(Boolean.FALSE); autoFitItem.setWrapTitle(Boolean.TRUE); autoFitItem.setHeight("*"); autoFitItem.setWidth("*"); form.setItems(autoFitItem); Record r = new Record(); r.setAttribute("autoFitItem", "ABCDEFG 1234567"); form.editRecord(r); VLayout appLayout = new VLayout(); appLayout.setWidth100(); appLayout.setHeight100(); appLayout.setMargin(5); appLayout.setMembersMargin(5); appLayout.addMembers(form); appLayout.draw(); } }
Comment