Options
- 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.
1 ACCEPTED SOLUTION
Options
- 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.
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 01:57 AM
@BoHyun Jung Make sense, your configuration was correct, it seemed to be a data issue.
Raghav
MVP 2023