Saving Excel with Form Information

Saving Excel with Form Information

OgrehulkOgrehulk Posts: 9Questions: 3Answers: 0

In my table, I have check boxes, text, and select inputs. When I choose to save with Excel (or any format) those items do not copy over. Is there a way to render those or a setting I am missing? I am using JSZip 2.6 because I was getting a version 3.0 error message that I could not figure out exactly what to so.

Answers

  • sciaschisciaschi Posts: 3Questions: 0Answers: 0

    i have this problem as well.

    Though regarding JSZip 3.0 the error is caused from saveAs being deprecated. In the datatable-buttons.html5.js on line 546 where saveAs is defined, replace it with

    zip.generateAsync({type: "blob"})
                .then(function (blob) {
                    _saveAs(blob, _filename( config ));
                })
    

    It'll save then. I'm in the midst of looking into the excel problem as well.

  • OgrehulkOgrehulk Posts: 9Questions: 3Answers: 0

    @sciaschi - Thanks for the 3.0 error. That fixed it. Just wish I could mark this answered, but I guess we wait and see :-)

This discussion has been closed.