Expand my Community achievements bar.

SOLVED

Add new instances to top of list (table or group) vs bottom

Avatar

Level 6

Is it possible to add new instances (i.e. of a table row, or subgroup) to the "Top" of the list vs bottom? New instances are typically added to the bottom of the group, but I have a case in which I'm trying to insert new instances of most recent Job History, so having the instances added at the top of the list is more beneficial.

Please advise and thank you in advance!!

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi,

to add a instance on the top use the insertInstance() menthod instead of addInstance().


Table1._Row.insertInstance(0, true);


View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

Hi,

to add a instance on the top use the insertInstance() menthod instead of addInstance().


Table1._Row.insertInstance(0, true);


Avatar

Level 6

Wow, thank you! I didn't expect the solution to be so simple.