zeh
2025-06-04 8697c7e54ef58089c5ae90aada00ad4789c4f9da
1
2
3
4
5
6
7
8
9
$(document).ready(function () {
    excel = new ExcelGen({
        "src_id": "test_table",
        "show_header": true
    });
    $("#generate-excel").click(function () {
        excel.generate();
    });
});