Trigger synthetic ExtJS event from jQuery or vanilla javascript event
问题 There exists a website implemented with ExtJS 3.1. I want to pre-fill some fields automatically. The problem is, that some fields are not validated by ExtJS when automatically filling them. I can trigger the validation by firing ExtJS's blur event: field.fireEvent('blur', field); However, I don't want to do this. I want that validation to be triggered by a normal event triggered via jQuery: $field.blur(); What I am asking here is the following: How to trigger the blur event of a textbox in