How to avoid double click on Import button when using a ace:fileEntry?
-----------------------------------
| ------------- | ----------
| C:\temp\test.csv | Browse... | | | Import | <------ Avoid dblclick
| ------------- | ----------
-----------------------------------
I was searching a solution for avoid a double-click on import button of icefaces FileEntry component. I found a simple solution, the only requirement is to use jQuery.
Fragment code:
Explanation:
Icefaces component doesn't have standard event (onclick, onchange, etc) then I can use jQuery to add which I need. I added a "onChange" event and when this one is fired I call directly the submit of my formular. That's it! :-)