Hi again,
I’m frustrated with the following problem:
I want ot improve the GUI thus marking e.g. invalid (input) values of a table view red.
This works fine with HTML: so say negative becomes red positive is black.
Only when selecting a record my TEXT_FIELD values nicely have white text on dark blue bg, whereas
my HTML_AREA field simply hangs on to the red and black.
Is there a workaround for this ?? (Can’t see jack s… like black on dark blue )
I trigger with a calculation field, say:
// Red if negative
if (clc_uitvul_cold > 0) {
v_out = '<html><DIV STYLE="color: black; \
text-align: right; \
font-size: 11pt;">' + sNumber + '</DIV></html>';
}else {
v_out = '<html><DIV STYLE="color: red; \
text-align: right; \
font-size: 11pt;">' + sNumber + '</DIV></html>';
}
return v_out;
Is it possible to trigger the selected record and make text white ?
Don’t know how to do this in a calculation
But maybe this UI deficit should be approached differently al together… any ideas?
Regards, Jan