cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X

Method for ensuring InfoTable data persists

jasong
1-Newbie

Method for ensuring InfoTable data persists

I know that you have to write the whole InfoTable to flag the backend to ensure the changes are persisted, not just the row/column data.

The method suggested to me awhile back was to do this

1. var TABLE = me.MyInfoTable;

2. TABLE.rows.column = value; //Edit Table....

3. me.MyInfoTable = TABLE;

But could you also do this?

1. me.MyInfoTable.rows.column = value;  //Edit Table....

2. me.MyInfoTable = me.MyInfoTable;

2 REPLIES 2
paic
1-Newbie
(To:jasong)

I actually tried that, and that didn't work.

So you still need an intermediary variable.

jasong
1-Newbie
(To:jasong)

Thanks Pai, as always.

Top Tags