Hi, can anyone help with my problem? I need to generate autosequence in a repeated subform with alpha chars ('a)', 'b)', etc.) instead of numeric. Thanks in advance!
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
this is not that difficult.
Assuming you have a repeatable subform names "SF" which contains a text field named "SFindex" then you can use the following script in the indexChange event of "SF".
var aChars = "abcdefghijklmnopqrstuvwxyz".split("");
SFindex.rawValue = this.index < aChars.length ? aChars[this.index] : "n/a";
Views
Replies
Total Likes
Hi,
this is not that difficult.
Assuming you have a repeatable subform names "SF" which contains a text field named "SFindex" then you can use the following script in the indexChange event of "SF".
var aChars = "abcdefghijklmnopqrstuvwxyz".split("");
SFindex.rawValue = this.index < aChars.length ? aChars[this.index] : "n/a";
Views
Replies
Total Likes
Thanks! That did the trick.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies