Hello. I have a dynamic table that displays all calls that have been assigned a RED priority. There is a field in this table that show to whom the call has been assigned to. I want all records that say unassigned in this coloumn to be in RED. I thought this code would do it:
<?php
if ViewRedCalls.fields.item("StaffID").value = "unassigned" then
<tr bgcolor=red>
else
<tr>
end if
?>
But its not. The recordset is called ViewRedCalls, the column is the StaffID column. Any ideas! cheers!
<?php
if ViewRedCalls.fields.item("StaffID").value = "unassigned" then
<tr bgcolor=red>
else
<tr>
end if
?>
But its not. The recordset is called ViewRedCalls, the column is the StaffID column. Any ideas! cheers!