- This topic is empty.
- AuthorPosts
-
- 08/16/2011 at 7:22 am #4135
AnonymousParticipantOur version of Quest was installed a while back and no one seems to know where the files supporting the training modules are. I am looking for a copy of helpdesk.js which is used in the calculated field module.
Thanks.
- 08/16/2011 at 7:22 am #4997
AnonymousParticipantHi Kim,
Here you are the helpdesk,js file content.
Please create a file using the same name and place under scripts folder on your site.
If you have any questions pelase let me know.
Thanks,
If you think that I answered your question please mark it so.
function DisplaySeverity(severity)
{
var imgSrc = '';if (severity == '(1) Work Halted')
{
imgSrc = 'images/Stop.gif';
}
else if (severity == '(2) Work Slowed Down')
{
imgSrc = 'images/YellowTriangle.gif';
}
else if (severity == '(3) Annoyance')
{
imgSrc = 'images/Annoyance.gif';
}
else if (severity == '(4) Question')
{
imgSrc = 'images/Question.gif';
}return '<img alt="' + severity + '" src="' + imgSrc + '">';
}
-
- AuthorPosts
You must be logged in to reply to this topic.