Button Click Event Ext Js October 26, 2023 Post a Comment I have the simple form: myForm = new Ext.form.FormPanel({ width:'100%', frame:false, items: [ new Ext.form.TextArea({ id:'notes', name:Solution 1: You either needa) The handler option (a click shortcut)newExt.Button({ handler: function(){ // .... } }); Copyb) Event listeners need to be registered in in a listeners block, sonewExt.Button({ listeners: { click: function(){ // ... } } }); CopyA) is preferred. Share Post a Comment for "Button Click Event Ext Js"
Post a Comment for "Button Click Event Ext Js"