简体   繁体   中英

Trigger an event after clicking browse button in file upload field Extjs

I am new in Extjs and I just had an issue with a fileuploadfield, basically what I want to do is to trigger an new event after clicking the browse button. I want to trigger both event. The one by default and the new event I am going to develop. Is there any way of doing that ?

After render of the file upload field, you want to attach to the trigger component's click event like this:

listeners: {
    afterrender: function(field) {
        field.getTrigger('filebutton').component.on('click', function() {
            Ext.Msg.alert('Browse button clicked');
        });
    }
}

https://fiddle.sencha.com/#view/editor&fiddle/2dn5

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM