I am trying to add a row to an empty table (no rows) and it seems that addInstance doesn't work.
table.row.instanceManager.addInstance(1);
Is there a different syntex if the table has no rows?
Thanks
Solved! Go to Solution.
Views
Replies
Total Likes
Try using the underscore shortcut for the instance manager, it lets you get at objects that don't exist yet.
So
table.row.instanceManager.addInstance(1);
becomes
table._row.addInstance(1);
Views
Replies
Total Likes
Try using the underscore shortcut for the instance manager, it lets you get at objects that don't exist yet.
So
table.row.instanceManager.addInstance(1);
becomes
table._row.addInstance(1);
Views
Replies
Total Likes
Works Great. Thanks.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies