@Aylarann ok, i have created a request to support this, you can subscribe here to get updates when there is progress about it.

BORIS MATOS MORILLO
@bjrmatos
Posts made by bjrmatos
-
RE: Docx create shapes or dynamic fill color
-
RE: No table border to docxHtml table
i think it is available from 4.4.0, anyway, you should update when you can to ensure it includes any bug fixes.
-
RE: No table border to docxHtml table
hi!
you can set table style to
style="border: 0px solid red;"
and ensure cells do not set any border styles and it should produce table with no borders -
RE: Docx create shapes or dynamic fill color
hi!
I was wondering if there is a way to create shape or dynamically modify the color of a shape that is present in the template ?
There isn't a built-in way to do it. how are you modifying the XML directly? the XML of docx (and other office related XML) have to be well-formed, otherwise you get a broken document that can not open, so this is likely what is happening with your direct modifications.
what shapes are you trying to modify? just that we get an idea if it is something we can easily support. perhaps you can share a docx with the shapes you plan to dynamically modify, and what modifications do you expect to make.
-
RE: Upgrade to 4.8 issue: Passing string to function in excel needs to be wrapped in apostrophes.
this is fixed now, it is going to be part of next release
-
RE: Informative error message for docx templates
update: we improved the error message to include the most likely problematic text in the docx template. it will be part of next release
-
RE: Upgrade to 4.8 issue: Passing string to function in excel needs to be wrapped in apostrophes.
hi! thanks for the bug report, yes both syntax should work since this is what handlebars supports, we will check what is happening.
-
RE: Upgrade Issue : Column widths are not correct when using pptxTable vertical=true (^4.5.0)
@WadeBenz using
colsWidth=["500px"]
is not a valid way to pass an array to a handlebars helper, in the pptx you need to have something like this:colsWidth=colsWidth
, and your data should contain the valuecolsWidth: ["500px"]
after you fix this, the colsWidth works as expected.
-
RE: XLSX Handlebar, am I able to dynamically display columns?
okay that is what i figured when playing around with the xlsx recipe. just to clarify, this recipe allows generating dynamic cells from EITHER horizontal or vertical but NOT both?
yes, we recently introduced the support for vertical loop, so it is matter of time to introduce the mode to produce cells in both directions and have fully dynamic cells support.
-
RE: XLSX Handlebar, am I able to dynamically display columns?
hi! this is not possible right now.
to be able to do what you want, we will need to generate dynamic cells from both directions, right now you can generate cells horizontally (using the each loop, just like in your example), and generate cells vertically (using
{{#each items vertical=true}}
and placing the end of loop vertically)support for generating the cells from both directions is not yet possible, you can subscribe here for updates about this feature, we will try to increase the priority for it, but no promises