Hi,
There’s a problem when I export to pdf using Firefox browser: if data from a cell is too long, it doesn’t append ‘…’ but just write over the next cell(s). You can replicate this on your data export demo using Firefox browser, for example in this jsfiidle: http://jsfiddle.net/3cymb54r/6/ by copying a product name multiple times to produce a long string. Then export it to pdf.
After digging into the jqxdata.export.js file, I think the problem is from *REMOVED DUE TO EULA VIOLATION!!!* It did not get the correct width because the r.offsetwidth for that cell always return width = 0 for all the cells in grid (although the height is correct). Therefore ALL the ae’s width for ALL cells of the grid is a constant s, which is 0.749999…
Each cell’s text dimension is 0.749999, is less than column’s size so everything is written into pdf without replacing overflow texts by ‘…’ like in Chrome.
I’m still stuck with the offsetwidth for any cell always return 0 in Firefox. Is there anyway to fix, or work around this ?
Thank you,
Kam