Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-21-2017 12:46 PM
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-21-2017 01:09 PM
Hi Balaram,
You could do that in a client script.
Eg: onChange client script on 'u_test' field.
var text = newValue.replace(/\n/g, ' '); //replaces newlines with spaces
g_form.setValue('u_test', text);
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-21-2017 01:09 PM
Hi Balaram,
You could do that in a client script.
Eg: onChange client script on 'u_test' field.
var text = newValue.replace(/\n/g, ' '); //replaces newlines with spaces
g_form.setValue('u_test', text);