Issue
Character limit
Solution
To chop the field characters off at a number of characters in a control, use the following javascript in a calculation control
[field] = [field].substr(0,11);
This will limit the number of characters to 11, change as needed.
Article ID: 222, Created: December 8, 2008 at 11:56 AM, Modified: May 2, 2017 at 4:33 PM