Hi guys, I have experience in Extjs for 2 Years, now we try to use Ext GWT. And I got css or layout issue just like the subject.
I have tried with the methods below, but it doesn't take effect. is there any other approach can fix this????
fl_t_userOremail.setLabelWidth(2);
fl_t_userOremail.setLabelPad(2);
Code:
//Col1:==============================================================
//row1 user/email
TextField t_userOremail = new TextField();
t_userOremail.setSize("20", "18");
CheckBox cb_userOremail = new CheckBox();
HorizontalPanel cellcol1row1 = new HorizontalPanel();
cellcol1row1.setSpacing(5);
FieldLabel fl_t_userOremail = new FieldLabel(t_userOremail, "* User/Email");
fl_t_userOremail.setLabelWidth(2);
fl_t_userOremail.setLabelPad(2);
cellcol1row1.add(fl_t_userOremail);//,new HorizontalLayoutData(.65, -1));
FieldLabel fl_cb_userOremail = new FieldLabel(cb_userOremail, "Internal");
cellcol1row1.add(fl_cb_userOremail);//, new HorizontalLayoutData(.35, -1));
col1.add(cellcol1row1);