Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2022 02:15 AM
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2022 10:44 AM
Hello @Khusi1 ,
Try to print this info message in client controller instead of printing it in server script
try to store your number in a variable like below
server script :
data.number=reqItem.number.toString();
Client Controller :
api.controller=function(spUtil) {
/* widget controller */
var c = this;
spUtil.addInfoMessage('Case Number :'+c.data.number);
};
Hope this helps
MARK MY ANSWER CORRECT IF THIS HELPS YOU
Thanks
Mohith Devatte
10 REPLIES 10
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2022 07:59 AM
Ok. You can add .toString() right after the number in your code. It will convert the glide element to string.