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 using the following code to autonumber dynamic table rows:
this.rawValue = this.parent.parent.index +1;
but I would like the numbers to appear with a period - like this 1. or 2.
How do I add this?
this.rawValue = this.parent.parent.index +1 + ".";
does not work
Solved! Go to Solution.
Perhaps you have too many parents
try: this.rawValue = this.parent.index + 1;
View solution in original post
All set - thank you!
Views
Likes
Replies