Hello
I have project where I want to draw red “X” mark on some selected PDF pages.
I have information at which pages inside JSON file field like:
var json = {“SelectedInvoicePages”:[true,true,false,true,false,true]};
(For example this document has 6 pages and each true,false means about state)
JSON object is passed into template using ExtraData field.
I would like to display red “X” when the value is “false”
Is there any way to draw this using Standard Script or Conditional Script?
Please help