Registered member login:
Register Now
Altirigos » Notification Server and Solutions » Help Desk » Color coding the Helpdesk incident grids

» Current Poll
Do you leave the Aclient enabled?
YES - 82.44%
216 Votes
NO - 17.56%
46 Votes
Total Votes: 262
You may not vote on this poll.
» Stats
Members: 10,090
Threads: 12,230
Posts: 57,322
Top Poster: Nick (4,991)
Welcome our newest member, garcia
» Online Users: 44
3 members and 41 guests
andykn, jimg, Magic_25
Most users online at once 294, 06-30-2007 at 12:24 PM.
» September 2010
S M T W T F S
293031 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 12
Reply
Old 08-14-2007, 12:53 PM   #1 (permalink)
 
Status: Altiris Admin
Join Date: 08-30-2006
Location: South Dakota
Posts: 96


Color coding the Helpdesk incident grids

Hi,

We've implemented the original John Doyle customization of color coding the incident grid per Altiris KB article 34253. We format the grid table to also include the "Due" column (workitem_due_on) and our workers want to know if it's possible to also color code the Due cell of an incident that is due on the current day as well as the Due cell of incidents that are overdue.

Anyone have a good idea on how to do this?

Thanks
matzebru is offline   Reply With Quote
Old 09-18-2007, 07:57 PM   #2 (permalink)
 
Status: Super Altiris Admin
Join Date: 04-19-2005
Location: Arizona
Age: 34
Posts: 212


Quote:
Originally Posted by matzebru
Hi,

We've implemented the original John Doyle customization of color coding the incident grid per Altiris KB article 34253. We format the grid table to also include the "Due" column (workitem_due_on) and our workers want to know if it's possible to also color code the Due cell of an incident that is due on the current day as well as the Due cell of incidents that are overdue.

Anyone have a good idea on how to do this?

Thanks
We have been trying to get this working as well, but to no avail. Did you ever get this figured out? If so, could you please share?

Thanks,
Kevin
knwilson is offline   Reply With Quote
Old 09-19-2007, 09:26 AM   #3 (permalink)
 
Status: Altiris Admin
Join Date: 08-30-2006
Location: South Dakota
Posts: 96


As far as color coding the Due cell of an incident that is due on the current day as well as the Due cell of incidents that are overdue - No, I have no idea how to do that. Was hoping I'd get a reply from some of the smarties here but no bites so far
matzebru is offline   Reply With Quote
Old 09-21-2007, 09:58 PM   #4 (permalink)
 
Status: Altiris Developer
Join Date: 07-11-2006
Location: Bangkok and Cardiff
Posts: 200


I see that this little mod is causing some grief. The original brief that i was given was to colour the priority field, but obviously people want to take this further. I'll post the code you need here, so just keep watching this thread
__________________
John Doyle
doyle.johnpaul@gmail.com
jdoyle is offline   Reply With Quote
Old 10-04-2007, 05:13 PM   #5 (permalink)
 
Status: Super Altiris Admin
Join Date: 04-19-2005
Location: Arizona
Age: 34
Posts: 212


Any updates John? You got me all excited for this.. :-)
knwilson is offline   Reply With Quote
Old 05-07-2008, 05:20 PM   #6 (permalink)
 
Status: Junior Altiris Admin
Join Date: 08-31-2006
Location: Dallas
Age: 42
Posts: 25


I'm interested in this as well.

I found a posting today out on the Symantec Forums. It is called:

How to make PAST DUE Incidents change color

In this posting, John Doyle did post some updated code to color code the columns and such. It is much easier to follow and use because now you can use color names rather than having to figure out the actual numeric code. Excellent work John.

The code however, doesn't address how to target the Due column specifically. I was able to come up with this:

Code:
 
sb.AppendFormat("else if({0}.Cell(0, 0, nPos) == '{1}') {{ {2}",grid,TryString("Due"),vbCrLf)
sb.AppendFormat(" if({0}.Cell(0, nCol, nPos) == '{1}') {2}",grid,TryString("5/1/2008 12:00:00 AM"),vbCrLf) 
sb.AppendFormat(" {{ {0}.Cell(7, nCol, nPos) = {1}; {0}.Cell(6, nCol, nPos) = {2}; {0}.Cell(13, nCol, nPos) = true;}}}} {3}",grid,ColorTranslator.ToWin32(Color.Black),ColorTranslator.ToWin32(Color.Magenta),vbCrLf)
This works perfectly against the incidents that have this specific due date and time. Of course we would want this to be automatic. I know in my case I would like to perhaps use the traffic light approach, where Green = due 1 day out, Yellow = due today, and Red = past due.

The ultimate question is how to do that.
john_quinn75013 is offline   Reply With Quote
Old 05-19-2008, 08:34 PM   #7 (permalink)
 
Status: Junior Altiris Admin
Join Date: 05-19-2008
Location: Los Angeles
Posts: 5


Uh.

Hi,

Let me start of by saying I'm pretty new to all of this and have been trying to implement the "John Doyle customization of color coding the incident grid per Altiris KB article 34253" but for some reason have been unsucessful. I dont know what I did wrong was there anything that I'm missing?
JMoreno28 is offline   Reply With Quote
Old 05-20-2008, 08:54 AM   #8 (permalink)
 
Status: Junior Altiris Admin
Join Date: 12-12-2007
Location: missouri
Posts: 27


Quote:
Originally Posted by john_quinn75013 View Post
I'm interested in this as well.

I found a posting today out on the Symantec Forums. It is called:

How to make PAST DUE Incidents change color

In this posting, John Doyle did post some updated code to color code the columns and such. It is much easier to follow and use because now you can use color names rather than having to figure out the actual numeric code. Excellent work John.

The code however, doesn't address how to target the Due column specifically. I was able to come up with this:

Code:
 
sb.AppendFormat("else if({0}.Cell(0, 0, nPos) == '{1}') {{ {2}",grid,TryString("Due"),vbCrLf)
sb.AppendFormat(" if({0}.Cell(0, nCol, nPos) == '{1}') {2}",grid,TryString("5/1/2008 12:00:00 AM"),vbCrLf) 
sb.AppendFormat(" {{ {0}.Cell(7, nCol, nPos) = {1}; {0}.Cell(6, nCol, nPos) = {2}; {0}.Cell(13, nCol, nPos) = true;}}}} {3}",grid,ColorTranslator.ToWin32(Color.Black),ColorTranslator.ToWin32(Color.Magenta),vbCrLf)
This works perfectly against the incidents that have this specific due date and time. Of course we would want this to be automatic. I know in my case I would like to perhaps use the traffic light approach, where Green = due 1 day out, Yellow = due today, and Red = past due.

The ultimate question is how to do that.
Where is this code posted, into one of the ascx files?
caleywoods is offline   Reply With Quote
Old 05-21-2008, 06:40 PM   #9 (permalink)
 
dominique's Avatar
 
Status: Sticky...
Join Date: 03-04-2005
Location: Culver City, CA
Age: 53
Posts: 3,396


Quote:
Originally Posted by matzebru View Post
Hi,

We've implemented the original John Doyle customization of color coding the incident grid per Altiris KB article 34253. We format the grid table to also include the "Due" column (workitem_due_on) and our workers want to know if it's possible to also color code the Due cell of an incident that is due on the current day as well as the Due cell of incidents that are overdue.

Anyone have a good idea on how to do this?

Thanks
This is for the Grid but do we have another KB for other colors:
- Banner ...
- Flyout Menu
- Dashboard
etc...

Thanks
__________________
Thanks
Dom
http://www.altirigos.com

"Helping somebody else may help you"
dominique is offline   Reply With Quote
Old 06-09-2008, 12:35 PM   #10 (permalink)
 
Status: Junior Altiris Admin
Join Date: 08-31-2006
Location: Dallas
Age: 42
Posts: 25


Quote:
Originally Posted by caleywoods View Post
Where is this code posted, into one of the ascx files?
Caley, yes that is correct. It is part of the subWorkItemTable.ascx file.

Remember to follow the best practices to do customization to the helpdesk.
john_quinn75013 is offline   Reply With Quote
Old 06-10-2008, 10:15 AM   #11 (permalink)
 
Status: Junior Altiris Admin
Join Date: 08-31-2006
Location: Dallas
Age: 42
Posts: 25


Quote:
Originally Posted by dominique View Post
This is for the Grid but do we have another KB for other colors:
- Banner ...
- Flyout Menu
- Dashboard
etc...

Thanks

Dominique, to color code the other things that you are looking for, I think those are tied to the Style sheets in the css directory.

Think I saw something about this in the Altiris Forums.
john_quinn75013 is offline   Reply With Quote
Old 06-10-2008, 12:08 PM   #12 (permalink)
 
dominique's Avatar
 
Status: Sticky...
Join Date: 03-04-2005
Location: Culver City, CA
Age: 53
Posts: 3,396


Excellent let me look for them...
__________________
Thanks
Dom
http://www.altirigos.com

"Helping somebody else may help you"
dominique is offline   Reply With Quote
Old 07-18-2008, 08:44 AM   #13 (permalink)
 
Status: Junior Altiris Admin
Join Date: 07-29-2006
Location: Belgium
Posts: 15


Color codes : numbers

I found a programme where you can create your color using slidebars on the RGB colors. the programme translate it to the weird numbers :-)
http://www.msaccessprogrammer.com/whatisthis
you only need access.


Tom
tomattack is offline   Reply With Quote
Old 09-04-2008, 05:56 PM   #14 (permalink)
 
Status: Junior Altiris Admin
Join Date: 03-01-2007
Location: Florida
Posts: 12


where do I add the overdue code?

I have followed the article to get the color coding to work for the priority field and I would like to add the additional code for the overdue tickets but can someone tell me where exactly it needs to be added. I have the "custsubworkitemtable.ascx" file, I assume it goes in there where I entered the code for the priority field but where in that file? Please help! Thanks!
lsattan is offline   Reply With Quote
Old 05-13-2009, 05:46 PM   #15 (permalink)
 
Status: Junior Altiris Admin
Join Date: 04-29-2009
Location: St. Louis
Posts: 5


workitem_due_on (DUE) color coding

I know this is an older post but did anyone discover how to color code the workitem_due_on (DUE) field.
I was able to follow KB 34253 and it works great but our HelpDesk is wanting to do a color highlight as items get closer to the Due date/time. Like within 8 hours, turn green, 4 hours yellow and 1 hour till due, change to red.

Anyone?
Thanks!
MarkWarmack is offline   Reply With Quote
Old 05-18-2009, 10:39 AM   #16 (permalink)
 
Status: Junior Altiris Admin
Join Date: 03-02-2009
Location: London
Posts: 3


Guest Customisations

Does anyone know which file to edit so that guests can view the same colour codings on the incident table as workers?
westynwo is offline   Reply With Quote
Old 11-01-2009, 11:02 PM   #17 (permalink)
 
Status: Junior Altiris Admin
Join Date: 10-28-2009
Location: Australiia
Posts: 13


Quote:
Originally Posted by tomattack View Post
I found a programme where you can create your color using slidebars on the RGB colors. the programme translate it to the weird numbers :-)
msaccessprogrammer.com/whatisthis
you only need access.


Tom
This works great!
Direct link for anybody who cares: msaccessprogrammer.com/colortranslator2000.mdb
fasrook is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Powered by vBadvanced CMPS v3.0 RC2

All times are GMT -4. The time now is 03:09 AM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
vB.Sponsors
Altirigos