Making Words of an Alert Bold
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2011 02:54 PM
I have the following Client Script that populates an alert every time a Priority one ticket is submitted. But i was wondering how i can make certain words of the alert bold while others are not. The phrase i would liek to bold are "impacting entire departments or geographic locations"
function onChange(control, oldValue, newValue, isLoading) {
var pri = newValue;
if (pri == 1){
alert ('Note: Priority 1 tickets are Critical - Urgrent problems or outages impacting entire departments or geographic locations, with mission critical impact.');
}
}
- Labels:
-
Incident Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2011 06:04 PM
This isn't possible with a javascript alert since they don't accept any HTML input.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2011 06:14 PM
If making them bold is Very much required, then Try writing a UI Page and call it in the place of the alert.You can make them BOLD(give what ever styles you want to give)