JExcel

by ysuper

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>JExcel Example</title>
    <!-- JExcel and Dependencies -->
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/jexcel/dist/jexcel.css" type="text/css" />
    <script src="https://cdn.jsdelivr.net/npm/jexcel/dist/jexcel.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/jsuites/dist/jsuites.js"></script>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/jsuites/dist/jsuites.css" type="text/css" />
</head>
<body>
    <h1>Simple JExcel Table</h1>
    <div id="spreadsheet"></div>

    <script>
        // Initialize the JExcel table
        jexcel(document.getElementById('spreadsheet'), {
            data: [
                ["John", "Doe", 29],
                ["Jane", "Smith", 34],
                ["Sam", "Wilson", 41]
            ],
            columns: [
                { type: 'text', title: 'First Name', width: 150 },
                { type: 'text', title: 'Last Name', width: 150 },
                { type: 'number', title: 'Age', width: 80 }
            ]
        });
    </script>
</body>
</html>