extjs4.1 - How to bring fieldLabel without colon for combo box in extjs -
can tell how bring fieldlabel without colon combo box in extjs
thanks
use labelseparator : "" config of combobox fix issue.
refer below example
ext.create('ext.form.combobox', { fieldlabel: 'choose state', store: states, querymode: 'local', displayfield: 'name', valuefield: 'abbr', labelseparator : "", renderto: ext.getbody() }); thanks, sure work.
Comments
Post a Comment