Pete Nellmapius
Posts: 0
Joined: Thu Sep 05, 2013 1:24 pm

Dynamically add data to a grid row by row.

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.

maxkatz
Posts: 0
Joined: Fri Aug 13, 2010 3:24 pm

Dynamically add data to a grid row by row.

This could be done via JavaScript. You would select the grid (table) in the DOM and add more elements to it (that represent the row) and its data.

Pete Nellmapius
Posts: 0
Joined: Thu Sep 05, 2013 1:24 pm

Dynamically add data to a grid row by row.

Thank Max
Will try that,

Jason Owens
Posts: 0
Joined: Mon Jul 06, 2015 11:29 pm

Dynamically add data to a grid row by row.

I have a question like this, but I have an App that queries the imported csv/database, and it returns the correct values per collection, and display them in their labels (Name, Description, Quantity). But I'd then like to have a button that added a value or entered directly into this field (Quantity). So basically if my search brings back value A, with 20 in quantity. I would like to then add or subtract from that quantity. Can I do this? I know I can add rows and columns, but I'm not finding any resources that tells me how to do this...

Thanks in advance...

Serhii Kulibaba
Posts: 150
Joined: Tue Aug 27, 2013 1:47 pm

Dynamically add data to a grid row by row.

Hello Jason,

Please look database documentation: https://devcenter.appery.io/documenta...

Return to “Issues”