How to make Short description field of Catalog item Bold?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Friday
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Friday
if you want it to be bold in the Service Portal or Employee Service Centre, I'd think you'll need to modify the widget on the page to be in bold (and it would affect all items that are using that widget on that page, unless you add script to validate against the sysID of the particular item or something)...if you want it bold in SOW, you may be able to do this with UI builder? and if you want it bold in the Next Experience Core UI you're probably outta luck (maybe open an idea on now support to request that as a feature enhancement?)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Friday
https://www.servicenow.com/community/developer-articles/how-do-i-set-short-description-field-your-la...
Please refer to this - it helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Friday
function onLoad() {
var shortDesc = g_form.getControl('short_description');
if (shortDesc) {
shortDesc.style.fontWeight = 'bold';
}
}