Hassankhan's avatar

Jquery Datatable PDF export not arabic language

I am using Jquery Datatables i all exports are working fine like CVV Excel but when I export PDF it does not support Arabic language please help to export datatables in Arabic language support Also, please provide me with some example code or a step-by-step guide for help.

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Arabic Records Table</title>
    <link rel="stylesheet" href="//cdn.datatables.net/2.1.0/css/dataTables.dataTables.min.css">
    <style>
        table {
            width: 100%;
            border-collapse: collapse;
        }

        th,
        td {
            border: 1px solid black;
            padding: 8px;
            text-align: center;
        }

        th {
            background-color: #f2f2f2;
        }
    </style>
</head>

<body>
    <table id="myTable">
        <thead>
            <tr>
                <th>رقم السجل</th>
                <th>الاسم</th>
                <th>العمر</th>
                <th>المدينة</th>
                <th>الوظيفة</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>١</td>
                <td>محمد علي</td>
                <td>٢٥</td>
                <td>القاهرة</td>
                <td>مهندس</td>
            </tr>
            <tr>
                <td>٢</td>
                <td>أحمد حسن</td>
                <td>٣٠</td>
                <td>الرياض</td>
                <td>طبيب</td>
            </tr>
            <tr>
                <td>٣</td>
                <td>فاطمة سعيد</td>
                <td>٢٨</td>
                <td>دبي</td>
                <td>معلمة</td>
            </tr>
            <tr>
                <td>٤</td>
                <td>خالد يوسف</td>
                <td>٣٥</td>
                <td>الدوحة</td>
                <td>محامي</td>
            </tr>
            <tr>
                <td>٥</td>
                <td>سارة محمد</td>
                <td>٢٢</td>
                <td>بيروت</td>
                <td>مصممة</td>
            </tr>
        </tbody>
    </table>


    <script src="https://code.jquery.com/jquery-3.7.1.min.js"
        integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
    <script src="//cdn.datatables.net/2.1.0/js/dataTables.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/3.5.23/jspdf.plugin.autotable.min.js"></script>
    <script>
        $(document).ready(function () {
            let table = new DataTable('#myTable', {
                // Add DataTable options if needed
            });


        });
    </script>
</body>

</html>
0 likes
0 replies

Please or to participate in this conversation.