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 ?
-
Welcome to Stack Overflow. Please show your latest non-working attempt at solving this problem. It is usually more instructive to see fixes to your code than to read someone else's solution. See stackoverflow.com/help/how-to-askAthul Nath– Athul Nath2018-02-26 04:25:17 +00:00Commented Feb 26, 2018 at 4:25
Add a comment
|
1 Answer
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');
});
}
}
1 Comment
Victor Velasco
Yes, that is exactly what I wanted. Thanks