Is it possible to change the data in a VueTable without re-populating the whole VueTable? I understand that each row entry in the BANAnoVuetifyAD3 VueTable is an Item and can have an ItemKey. But how do I access a specific row in a VueTable to change one or more fields in that row?
For a simple example from one of the tutorials, let's say that I have a VueTable with the following setup.
If I make "name" the ItemKey, how do I change the "calories" field in the first row from 159 to 200 without having to recreate the whole table? I assume that I would use SetData or some other method to do that but I could not find an example.
Thank you for your help.
For a simple example from one of the tutorials, let's say that I have a VueTable with the following setup.
VueTable:
vetable.AddColumn1("name", "Dessert (100g Serving", vetable.COLUMN_TEXT, 0, True, vetable.ALIGN_LEFT)
vetable.AddRow(CreateMap("name": "Frozen Yogurt", "calories": 159, "color":"green", "fat": 6.0, "carbs": 24, "protein": 4.0, "iron": "1%"))
tables.BindVueTable(vetable)
If I make "name" the ItemKey, how do I change the "calories" field in the first row from 159 to 200 without having to recreate the whole table? I assume that I would use SetData or some other method to do that but I could not find an example.
Thank you for your help.