Hi,
I am trying to add multiple rows to the grid using grid.addRow() method.But only first row is getting added ,the other rows are not geting added.Can anyone help me.
Please find my code:
groupsGrid.enablePaging(true,20,10,“paging”);
groupsGrid.setPagingSkin(“toolbar”, “dhx_blue”);
groupsGrid.enableMultiline(true);
var group = groups.split(",");
alert(group.length);
for (var i=0;i<group.length ;i++){
alert(group[i]);
groupsGrid.addRow("i",["",group[i],""]);
}