hi
i have a big windows with a form in it and some text fields.by default labels are aligned to the left and their input boxes are aligned to center. Is there a way to stick input boxes to their labels in left?
Is there any tutorial on how to work with css on extjs?
hi i have a big windows with a form in it and some text
Share
Use:
in your form config.
for example:
var form = new Ext.form.FormPanel({ height : 200, width : 250, labelAlign : 'right' labelWidth : 80, //because my fieldlabel is short enough items : [{ fieldLabel : 'Name', .... }, ....] })