Is it possible to format text in an operations dashboard's list, via html, based on an attribute value? I know it can be done in webdesign through php or css files, but am not sure how limited it is in this environment.
I have a list of feature attributes, and one of those attributes is "status". Is it possible to use some sort of conditional formatting to change the text's color based on the status attribute, something like if {status} = "In Design", make the font color pink; if {status} = "In Progress", make the font color green; if {status} = "Complete", make the font color red... so it'd look like this:
Project Name: XYZ Subdivision
Description: Install underground utilities
Project Status: Complete
Project Name: ABC Subdivision
Description: Install underground utilities
Project Status: In Design
Project Name: 123 Main St.
Description: Install underground service
Project Status: In Progress
I've seen ways to do it with an additional attribute field of an html color code that then colors the cell in the list with that color, but I also seem to remember reading that auto-updates don't work; so if I were to come back and change the status of a feature I'd also have to change the html color manually...it wouldn't do it automatically.
Hopefully all that makes sense...