Hi,
I am trying to use formulas in my table. The problem is that I am using a custom renderer for a few columns. The data for those columns is passed as POJOs (e.g. {label: "abc"}
) while the data for the other columns is number
which is rendered using a standard renderer for numbers. My goal was to enable simple calculations (e.g. =3*4
) on the columns/cells with number
values.
When initializing the handsontable instance I get an UnableToParseError
on the POJO.
Is there any way to configure formula to exclude the columns/cells or to provide a custom function for parsing those values?
Thanks!