


Is it possible to type a calculation into a field and once you exit the field it will display the result? For example, type 30+40 and then exit the field and it will display 70.
Views
Replies
Sign in to like this content
Total Likes
There's nothing built-in to do that but you might be able to write script to handle it.
Views
Replies
Sign in to like this content
Total Likes
In the exit event of the field, language=JavaScript put:
this.rawValue=eval(this.rawValue);
Kyle
Views
Replies
Sign in to like this content
Total Likes
Oh sure Kyle make it look easy...
Views
Replies
Sign in to like this content
Total Likes
Thanks for the response. I got it to work in a Text Field, but not a Numeric Field. How can it to work in a Numeric Field that has a pattern or is this not possible?
Views
Replies
Sign in to like this content
Total Likes
What's the pattern?
Views
Replies
Sign in to like this content
Total Likes
I have a few, but the main one is the first one listed below.
num{($zzz,zzz,zz9)}
num{zzzz9.zz}
num{zz9.9%}
num{zzzzz.9%}
Views
Replies
Sign in to like this content
Total Likes
Technically, you CAN use those patterns for text fields although it's not officially supported. Make sure the parentheses on your first one are taken out and put single quotes (') around your percentage sign.
Kyle
Views
Replies
Sign in to like this content
Total Likes
Thanks so much for your help!
Views
Replies
Sign in to like this content
Total Likes