Subrows In Jsgrid
I try to create a table with some rows and columns with the help of jsgrid. On click on a row, it should expand and show some SubRows. I therefore created a row.click() function. B
Solution 1:
Instead of appending to the first row you need to return both rows:
return row.add(addressesGrid);
Here is the corrected fiddle http://jsfiddle.net/9ftwLsmf/
Post a Comment for "Subrows In Jsgrid"