You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In editablegrid.js at line 556 var tr = this.getRow(rowIndex);
Variable tr can be null if rowIndex points to row which in another page (when using pagination). Next line will throw exception in this case.
Maybe add check like if (tr)
The text was updated successfully, but these errors were encountered:
In editablegrid.js at line 556
var tr = this.getRow(rowIndex);
Variable tr can be null if rowIndex points to row which in another page (when using pagination). Next line will throw exception in this case.
Maybe add check like
if (tr)
The text was updated successfully, but these errors were encountered: