With one of the last few 3.1p nightlies you broke DateItem (we're on v8.3p_2013-03-04/LGPL). The table cell that hosts the text input field is 150px wide even though I set it to be less. See dateitem.png and the test case.
Code:
public class SmartGwt implements EntryPoint {
public void onModuleLoad() {
HLayout canvas = new HLayout();
DateItem dateItem = new DateItem("dateItem", "Date");
dateItem.setWidth(100);
dateItem.setUseTextField(Boolean.TRUE);
dateItem.setEnforceDate(Boolean.TRUE);
DynamicForm form = new DynamicForm();
form.setFields(dateItem);
canvas.addMember(form);
canvas.draw();
}
}
Comment