devops-at-alinea
devops-at-alinea
Following on from #481, I still think there is a need for returning raw cell data. The attached xlsx has a cell C2 with a custom format which is is...
If I register a variable and indirectly reference it, it won't be processed properly: ``` $('#my_sheet').calx('registerVariable', 'my_var', 2); var my_sheet = { A1: {value: my_var}, A2: {formula: "IF(A1=my_var, 1, 0)"},...
The method for creating a `data-calx-identifer` hash leads to collisions which can make pages with multiple sheets inoperable: ```javascript init : function (option) { //code omitted sheetIdentifier = 'CALX'+(new Date()).valueOf();...
Using: https://sphilee.github.io/jsPDF-CustomFonts-support/# with this font [baloo-tamma-v3-latin.zip](https://github.com/sphilee/jsPDF-CustomFonts-support/files/2081149/baloo-tamma-v3-latin.zip) Downloaded from here: https://google-webfonts-helper.herokuapp.com/fonts/baloo-tammudu?subsets=latin With the following code: ` doc.addFont('baloo-tamma-v3-latin-regular.ttf', 'custom', 'normal'); doc.setFont('custom'); doc.text(15, 15, 'ABCDEFabcdefgAAAAAAAAAAAAAAAAAAAB'); ` Gnerates a pdf with the following text:...