Bug report: serializeToCSV(true) clears out checkboxes

Hi DHTMLX,

This is just a bug report: if I use serializeToCSV(true) on a grid that has checkboxes in it, then all of the checkboxes come out as blank, whether they are checked or not. That is a problem. serializeToCSV(false) includes them as 0 or 1, which would be fine for serializeToCSV(true) to do also. My workaround was to use serializeToCSV(false) and then strip out HTML myself.

Thanks.

In case of using the serializeToCSV(true) only the text values will be serialized. So it is expected that the checkbox won’t be serialized.
docs.dhtmlx.com/api__dhtmlxgrid_ … tocsv.html

Okay. But then how is one to serialize the grid so that the result has no HTML in it, but does indicate whether the checkboxes are checked or not? Any ideas?