Hi Abu,
I would use the file upload function but if I use jquery3+ I get the following error: url.indexOf is not a function I read that .load, .unload, and .error, deprecated since jQuery 1.8... and suggest to use .on() to register listeners. Can you help me? Thanks in advance Alessandro
3 Answers
Hi Abu,
i found the solution:
on line 10413 of jquery.jqGrid.js I replaced
return jQuery("#" + n).load(i), { abort: function () {} }; with return jQuery("#" + n).on('load',i), { abort: function () {} };
and everything works
Alessandro
Thanks for the update. If you face any other issue related to jQuery3, Please refer this thread and use jQuery migration plugin.
Your Answer