- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-26-2017 08:39 AM
during my research i have found:
Form fields in docs
but I was thinking to use that orange indicator for a change to the incident form that highlights the fact that a due date is about to pass or has passed.
how can I create a new indicator... and what is the best way to do this? with a business rule? a BR to run after the form has loaded? and then checks the due date field on the incident form?
suggestions anyone?
let me involve the CSS master jim.coyne
Thanks
Solved! Go to Solution.
- Labels:
-
Incident Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-26-2017 09:40 AM
I don't think you'll be able to do it in a business rule, but you could use a field style to do this if you don't want to use a client script.
And here's an example of using an advanced condition that involves dates.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-26-2017 08:46 AM
You can write onload client script to change field colour based on your requirement.
Below is sample code
function onLoad() {
var table_name = g_form.tableName;
var commField = table_name + '.caller';
gel(commField).style.backgroundColor="red";
}
Regards.
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-26-2017 08:51 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-26-2017 09:40 AM
I don't think you'll be able to do it in a business rule, but you could use a field style to do this if you don't want to use a client script.
And here's an example of using an advanced condition that involves dates.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-26-2017 10:05 AM
great thanks i will try the above