Avatar

Level 10

Hi,

The addInstance() method returns the same object as if you have executed a resolveNode targeting the row added.  So if your row was called Row1 and contained a cell with a field called TextField1 then you could add a row and set the field's value with code like;

var newRow = Table1._Row1.addInstance();

newRow.TextField1.rawValue = "some information";

Regards

Bruce