Question
How to add a character or several characters at the beginning of the field value.
Answer
A simple script could be used in this field in order to address this task:
- Create a new Rule in this field, it should be a Script rule.
- Make sure to remove the Read Only flag from that field:
- Use a simple script like this in order to change the field value (JScript.Net is used here):
Context.Field("Name of the Field").Text = "prefix" + Context.Field("Name of the Field").Text;
Comments
0 comments
Please sign in to leave a comment.