For some odd reason, I cannot paste into any of the search boxes at the top of my columns.
I tried $col["editable"] = true;
but the cursor just sits there.
I did see in the source code there's a binding to take over 'paste' in the browser so I'm guessing this has something to do with it.
Thanks
3 Answers
You can comment out JS files / code one by one, that might be conflicting with grid JS.
Fixed it by commenting out the whole :
jQuery(document).bind('paste', function(ev) { …..
in jqgrid_dist.php in /lib/inc
Looks like that function was for copy/pasting multi lines into a form when adding records?
Your Answer