How can I add inside a field info and when the user start typing the info disappeared
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2024 03:00 AM
Hi,
How can I add inside a field info and when the user start typing the info disappeared. for example:
'Please write a short description' inside the short_description field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2024 03:05 AM
Hi @Alon Grod
Add the example text
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2024 03:15 AM
@Dr Atul G- LNG hi what if i want it not from the record producer but from the Backend? where can I add this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2024 03:24 AM
Hi @Alon Grod ,
You can write Onload Client script and add the below code,
function onLoad() {
g_form.showFieldMsg('Field_name', 'msg');
var valueOfSD = g_form.getValue('short_description'); // example
g_form.showFieldMsg('short_description', valueOfSD);
}
Please mark this comment as Correct Answer/Helpful if it helped you.
Regards,
Swathi Sarang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2024 03:59 AM
@swathisarang98 its not working