I have been using the beforepaste hook to allow folks to paste data into the table. I manually get the data from the befrepoaste then run my own logic to insert/udpate data on the back-end.
I now have a requirement to allow people to paste a file into the grid. Here again, I want to get the file data and would manually upload/associate the file with the right record in the table.
Right now, the only attributes I can access on the beforepaste is data & coords.
I don’t seem to have access to the paste event, where I could then access the pasted file contents via the event.clipboardData atrtributes.
Is there some way for me to get this pasted even data in the beforePaste hook? Or how else might I accomplish this?