- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2023 11:03 PM
I create korean and english messages in System Localization -> Message.
English message appears well, but korean message doesn't appear.
How can i see korean message?
[Messages]
[client script]
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
if (g_form.getValue('work_start') > g_form.getValue('u_additional_completed')) {
getMessage('\'Additional completed\' must be greater than \'Actual start\'', function(msg){
alert(msg);
});
g_form.setValue('u_additional_completed', '');
}
}
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 01:09 AM
The cause has been found.
I put escape character in Key Value. It works well after removing escape character.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2023 11:32 PM
Did you changed your language to "Korean" and reloaded?
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2023 11:48 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 01:04 AM
This should work, In your screenshot what is the second field? is it language?
In english the language name should be "Korean".
Try creating the record again.
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 01:09 AM
The cause has been found.
I put escape character in Key Value. It works well after removing escape character.