unable set mandatory a field in change request form by using g_form
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2025 10:41 PM
unable set mandatory a field in change request form by using g_form
unction onLoad() {
//Type appropriate comment here, and begin script below
g_form.isMandatory('short_description',true);
g_form.isMandatory('short_description',true);
}
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2025 11:08 PM
Hi @sumanthpopu ,
Please find the correct line of code:
g_form.setMandatory('short_description',true);
If my response solves your query, please marked helpful by selecting Accept as Solution and Helpful, so that it benefits future readers.