$opt["loadComplete"] = "function(){ rightclickevent(); }"; loadComplete doesn't work myfunction. Actually; When I open the grid, sometimes it does not call the function and gives an error and the loading text does not go.
2 Answers
Hello,
By error console message, it’s clear that this function is not defined in global scope to be called from any place.
Move this function to global scope and it should work. The loadComplete seems to work.
Your Answer