Hello everyone,
So in my grid, I have something like this :
ROW1
  Sub-Row11
  Sub-Row12
ROW2
  Sub-Row21What I need to do is, whenever a user clicks on a menu item, I create a new Row (let’s call it ROW3) and attach “Sub-Row12” as a child (without changing its id). In other words, when I click a menu item, I want this :
ROW1
  Sub-Row11
ROW2
  Sub-Row21
ROW3
  Sub-Row12I tried calling the onDrag (and even onDrop) event, without any results whatsoever. Here is the piece of my code :
myGrid.attachEvent("onDrag",
  function([params]){
    return true;
  }
);
myGrid.addRow("ROW3",[rowContent here]);
myGrid.callEvent("onDrag",["Sub-Row12","ROW3",myGrid,myGrid,0,0]);Do I have to create again the said Sub-Row12 as a ROW3 child ?