I have a combo box
This outputs the displayField value NOT the value field value .Code:xtype:'combobox', name:'myExampleName', id:'myExampleId', displayField:'dips', valueField:'val', validator: function(value){ console.log(value); }
If the name id of the object is "myExampleId" and I do this
I get the valueField value as expected.Code:var myTestObject= Ext.getCmp(myExampleId); console.log(myTestObject.getValue());
Can anyone explain why ? Validator seems to acting wrongly .