That's a shame ((
Thanks, @jan_blaha for a reply.
A
andribo
@andribo
0
Reputation
3
Posts
441
Profile views
0
Followers
0
Following
Posts made by andribo
-
RE: Add indentation to a cell content using html-to-xlsx recipe
-
RE: blank page is rendering when there are no data in appended template
Hello @Happy-Patel ,
What if you merge the template instead of appending it?
-
Add indentation to a cell content using html-to-xlsx recipe
Hi all,
I generate an xlsx-file using
html-to-xlsx
recipe. Some cells in the file should have indentation but I don't know how to do that.Here's an example: https://playground.jsreport.net/w/anon/gDy_MBMR
<style> .indent { padding-left: 16px; } .red-text { color: red; } </style> <table> <tr> <td>Cell without indentation</td> </tr> <tr> <td class="indent red-text">Cell with indentation</td> </tr> </table>
Could someone tell me if it's possible to add cell indentation and how to do it? Thank you.