-
5 Feb 2008 3:09 AM #1
ComboBox empty value
ComboBox empty value
I propose the next changes for ComboBox element:
This changes to allow empty value for ComboBox element when ComboBox.forceSelection == true and ComboBox.allowBlank == trueCode:Object.extend(Ext.form.ComboBox.prototype, { doForce: function() { if(this.getRawValue().length <= 0){ if (this.allowBlank) this.lastSelectionText = ""; } this.el.dom.value = this.lastSelectionText === undefined ? '' : this.lastSelectionText; this.applyEmptyText(); } });


Reply With Quote