Combo Box Placed Next To The Textfield Using Extjs
My code: var mpanel = new Ext.Panel({ baseCls: 'x-plain', //layout: 'anchor', width: 290, height: 500, items: [{ {
Solution 1:
Wrap both fields in a HBox layout, place the textfield left (first item), and the combo right (second item). Do not forget to remove all styling you have put in css or "style" config option.
Post a Comment for "Combo Box Placed Next To The Textfield Using Extjs"