Hi everyone,
Current behavior
From the main/home screen, some variable are define:
Set(myVar, {});
Set(myTable, Table({FirstName: "John", LastName: "Snow"},myVar));
It works as expected. Now, in another screen (displayScreen), the myVar is updated:
Set(myVar, {FirstName: "Daenerys", LastName: "Targaryen"});
- If myVar is displayed on the screen (displayScreen), the value is correct
- If myTable is displayed on the screen (displayScreen), Only "John Snow" is visible (the updated variable was not taken into account in the Table
Note: to ensure that a variable can be stored into a Table, a test was performed with myVar with an object, and it works.
Expected behavior
When the variable is updated, the Table that contains this variable should be updated too (contains the latest values)
Something is missing? It is another solution to do that?
Thank you in advanced