I want to add data to a grid. The grid row would look something like this
| n | A description goes here | x | y | z |
The data is calculated and added row by row dynamically. THe result could be any number of rows.
A sample result would be:
| 1 | A description goes here | 3 | b | 5 |
| 2 | A description goes here | 4 | o | 2 |
| 3 | A description goes here | 7 | c | 3 |
Any sugestions how I would do this.