In the existing ext js code in the application, a combo box is overriden like this:
Ext.override(Ext.form.ComboBox, {
nullable:true
,initComponent: Ext.form.ComboBox.prototype.initComponent.createSequence(function(){
this.triggerConfig = {
tag:'span', cls:'x-form-twin-triggers', cn:[
{tag: "img", src: Ext.BLANK_IMAGE_URL, cls:'x-form-trigger '},
{tag: "img", src: Ext.BLANK_IMAGE_URL, cls:'x-form-trigger x-form-clear-trigger'}
]};
this.addEvents(
'clear',
'change'
);
}})
Why do we need to define:
this.addEvents(
'clear',
'change'
);
'change' is already defined as an event for combobox in extjs. 'clear' is not defined in extjs.
EDIT: Maybe a reference to the actual example will help: Here it is. http://www.sencha.com/forum/showthread.php?84300-Nullable-ComboBox&p=404222&langid=14
changeis a bit strange, since it's inherited anyway feomExt.form.Field. As far ascleargo, maybe it is being used elsewhere. JavaScript gives you that nasty possibility to spread your definitions around, so it might not be obvious. – Mchl Feb 4 '11 at 21:04