Thanks to the help of another participant, I successfully implemented the JS method, which has the ability to insert Excel data and break it into the form of an HTML text field table ( see thread ).
The problem that I am facing now is that it only works in Chrome, and IE10 and IE11 have the following error:
"Cannot get getData property from undefined or null reference.
This error occurs in the second line of the function (below):
function (event) { var input_id = $(this).attr("id"); var value = event.originalEvent.clipboardData.getData('text/plain');
I wonder if anyone can see the problem of why Chrome is satisfied while IE is not working.
source share