2

I want to export a part of my html code to pdf, for this I am using the following code :

<script language = "JAVASCRIPT">
var doc = new jsPDF();
var specialElementHandlers = {
    '#editor': function (element, renderer) {
    return true;
    }
};
$('#download').click(function () {
    doc.fromHTML($('#mytable').html(), 15, 15, {
    'width': 170,
        'elementHandlers': specialElementHandlers
    });
    doc.save('sample-file.pdf');
});
</script>

but it doesn't support CSS .. how can I export it with its style ?

1

1 Answer 1

0

What data do you want to export?

If you want to export an HTML <table>, you can take a look at this export sample provided by the Shield UI Grid widget.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.