Hi, I have a decimal field on my interface that I want to colour based on its value..something like
if =8: then green
if <>8: then blue
How do I do that??
I know how to colour a text field.
Please help
thanks
jaideep
Discussion posts and replies are publicly visible
Additionally, if you can change to a!richTextDisplayField() you can utilize color-coded text values:
a!localVariables( local!values: {7.55,8,9.22}, { a!forEach( items: local!values, expression: a!richTextDisplayField( value: a!richTextItem( text: fv!item, color: if(fv!item=8,"#3DDD2A","#0000FF") ) ) ) } )
Thanks Chris..okay so this also looks like another option. I need to try it