Articles on: Release notes

Release Notes 2.60.0 (10.02.2021)

Improvements



Container component: border and background color


It is now possible to apply border configuration and background color for Container component. You no-longer need to use Rectangle hack to add borders for your Container component. The layout engine uses the Container dynamic height to add borders and background color. It also handles page breaks if your container spans across multiple pages.

New expression function number_format


We have introduced a new functions for expression language which allows to apply number format within larger text blocks.

number_format([Number], [Decimal places], [Decimal separator], [Thousands separator])

Examples:
{% number_format(1110.54) %} // Result: 1,110
{% number_format(1110.54, 1, ",", "") %} // Result: 1110,5
{% number_format(1110.54, 3, ",", " ") %} // Result: 1 110,540

Updated on: 10/02/2021

Was this article helpful?

Share your feedback

Cancel

Thank you!