I need to be able to include backslashs in a script that adds text to a textfield.
Example: this.rawValue = "\\Start\now.";
Solved! Go to Solution.
Views
Replies
Total Likes
you'll need an extra backslash for each one you want to present in the field.
So, if you want to get "\\start\now.", you need "\\\\Start\\now."
this.rawValue = "\\\\Start\\now."
Views
Replies
Total Likes
you'll need an extra backslash for each one you want to present in the field.
So, if you want to get "\\start\now.", you need "\\\\Start\\now."
this.rawValue = "\\\\Start\\now."
Views
Replies
Total Likes
Thank you
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies