Hi,
What i would like to do is change the colour of the text for certain documents in a web view, if the quantity is zero I want that document to appear red in the view, otherwise i would like it to appear green
Is this possible, if so, how?
Thanks
F1H
Subject: Text colour in HTML view
Hi,
Treat the view as HTML. you will have to put some html tag inside.
Ex:
In the form : put some html tag with HTML relay.
Insert the view here
In the view / column :
“<td class="” + @If( quantity = 0 ; “red”; “green”) + “">” + quantity + “”
Regards.
AD.