- Ext.getCmp not returning current value of html editor
- onSubmitBtnClick: function () {
- var notes = Ext.getCmp('notes').value;
- // this value is not the current value in the editor.
- }
- onSubmitBtnClick: function () {
- var notes = Ext.getCmp('notes').getValue();
- }