Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
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.
Try using the underscore shortcut for the instance manager, it lets you get at objects that don't exist yet.
So
becomes
table._row.addInstance(1);
View solution in original post
Works Great. Thanks.
Views
Likes
Replies