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
Hi there, I use jquery-aciTree-4.4.0 and jquery-bootgrid plugin. jquery-bootgrid add some method to Array.
in jquery.aciTree.core.js line 1413, there is a for-each loop for Array: "for (var i in itemData) {", which could be change to "for (var i=0; i<itemData.length; i++) {", to avoid to generate some addtional tree items.
thanks for your greate work.
The text was updated successfully, but these errors were encountered:
Hi there, I use jquery-aciTree-4.4.0 and jquery-bootgrid plugin. jquery-bootgrid add some method to Array.
in jquery.aciTree.core.js line 1413, there is a for-each loop for Array: "for (var i in itemData) {", which could be change to "for (var i=0; i<itemData.length; i++) {", to avoid to generate some addtional tree items.
thanks for your greate work.
The text was updated successfully, but these errors were encountered: