Skip to main content
February 17, 2014
Question

Method for ensuring InfoTable data persists

  • February 17, 2014
  • 2 replies
  • 1237 views

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

1-Visitor
February 17, 2014

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

So you still need an intermediary variable.

February 17, 2014

Thanks Pai, as always.