Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
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.
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."
View solution in original post
Thank you
Views
Likes
Replies