Hi Isomorphic,
In Feature Explorer:
http://www.smartclient.com/index.jsp#treeDropEvents
I've put the following test code:
In "Canteen and Washroom Products" try to reorder subcategories by dragging "Washroom" beneath "Canteen". Although folderDrop behaves as expected but visually the reordering dosen't happen.
This is happening olny when I'm trying to reorder a node to the last position in his parent.
Thanks,
John
In Feature Explorer:
http://www.smartclient.com/index.jsp#treeDropEvents
I've put the following test code:
Code:
isc.TreeGrid.create({ ID: "categoryTree", width: "100%", height: "100%", dataSource: "supplyCategory", canAcceptDroppedRecords: true, canReorderRecords: true, canReparentNodes:false, loadDataOnDemand: false, folderDrop : function (dragRecords, dropFolder, index, sourceWidget) { this.Super('folderDrop', arguments); isc.say(" index: "+index); }, autoFetchData: true });
This is happening olny when I'm trying to reorder a node to the last position in his parent.
Thanks,
John
Comment