File size: 1,272 Bytes
02724dc
27648bc
02724dc
27648bc
 
 
 
 
 
 
 
 
02724dc
27648bc
 
 
 
 
 
 
ecf672f
02724dc
27648bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
02724dc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Tabulator Example</title>
    <link href="https://unpkg.com/tabulator-tables/dist/css/tabulator.min.css" rel="stylesheet">
    <script type="text/javascript" src="https://unpkg.com/tabulator-tables/dist/js/tabulator.min.js"></script>
</head>
<body>
    <div id="example-table"></div>

    <script type="text/javascript">
        var data = [
            { "email": "[email protected]", "name": "Елена", "phone": "79290547079" },
            { "email": "[email protected]", "name": "Ольга", "phone": "79150408998" },
            // Добавьте остальные данные здесь
        ];


    </script>





    <script type="text/javascript">
 var table = new Tabulator("#example-table", {
    height: "311px",
    ajaxURL: "https://your-server-url/data_gc_tab_out?api_sys=fasSd345D", // URL для загрузки данных
    columns: [
        { title: "Name", field: "name", width: 250, frozen: true },
        { title: "Phone", field: "phone", width: 200 },
        { title: "Email", field: "email", width: 300 }
    ],
});
    </script>





  
</body>
</html>