Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Date sensitive task list

Status
Not open for further replies.

mjpost

Technical User
Feb 4, 2002
9
AU
I’m looking for a simple task list that colour codes with the date and status of the task.

I’m not looking for a scrolling calendar. Just a list that I can click through.

Any suggestions?
 
You can do what you want with a mix of "SELECT / OPTION" and styles like this :
Code:
<style>
  .Passed {
    background : #00FFFF;
    color : Red;
    font-weight : bolder;		
  }
</style>
...
<select id =&quot;mySelect&quot;>
  <option class=&quot;Passed&quot; value=&quot;1&quot;>Test Passed</option>
  <option value=&quot;2&quot;>Test Normal</option>
</select>
Water is not bad as long as it stays out human body ;-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top