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

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -