
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2019 11:13 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2019 12:41 PM
I think its a bug in SN. If you have HI account, post a request there and they should help you.
Regarding the fix, you can use client script.
Write a onchange client script on your Bridge meeting field like below
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
if(newValue.length>1) {
g_form.showErrorBox("u_bridge_meeting","You cannot enter more than 1 digit",true);
}
}
Mark the comment as a correct answer and also helpful once worked.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2019 01:01 PM
It works.Javascript converts it implicitly. Already checked in my dev instance before sharing the code.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2019 12:39 PM
You can use on change client script for that and validate number of digits entered.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2019 01:11 PM
Replace comma before checking the length.
g_form.getValue("u_bridge_meeting").replace(/,/g,'').length;

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2019 11:20 PM
Hi Mitch
It might not require as you are only checking for a length of 1. The comma gets added only after 3 digits.
Please mark my comment as a correct answer and also helpful once worked.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2019 01:56 AM
Hi Mitch,
You can refer the below link, In this link this is specially mention that
- You can only change this value for a String field. Changes for any other type of field are ignored.
https://old.wiki/index.php/System_Dictionary
For your refrence i have attached one image kindly go through it.
If you found my answer helpful kindly mark it as helpful or correct
Thanks and Regards,
Priti Golam