Border around cells in create PDF document template

0
I tried to use different styling commands for adding border around the cells in template document but nothing work if I add style with {} brackets it gives unsupported style error.  for example the data in below image is with respect to cells but i am unable to add the border around all cells, I don’t want to add border on each cell one by one.  Picture is on below link https://docs.mendix.com/refguide/how-to-create-your-own-documents
asked
1 answers
1

I suggest using direct CSS on your templates to do simple styling.

If I remember correctly something like the following line should work for a 1px wide border with using a common grey:

border: solid 1px #ccc;

See below a screenshot of the styling I’m suggesting. Let me know if it doesn’t work.

Hope this helps

answered