Hi there,
I have a data table that I display via subforms and I would like for some lines to be able to modify the font (size, color, style etc) from a field in my current data line.
Example:
. my data table:
LAST_NAME | FIRST_NAME | CHANGE_STYLE |
HAMILTON | LEWIS | X |
RAIKKONEN | KIMI | |
SENNA | AYRTON | X |
ALONSO | FERNANDO | |
Now, when this data are displayed in my PDF, i would like, for example, the following result:
LAST_NAME | FIRST_NAME | CHANGE_STYLE |
HAMILTON | LEWIS | X |
RAIKKONEN | KIMI | |
SENNA | AYRTON | X |
ALONSO | FERNANDO | |
The new style of the row (line 1 and 3 in my example) is applied if the field 'CHANGE_STYLE' is equal to 'X'.
Is it possible to do that? in javascript i suppose.
Thank for any help.