Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
<!DOCTYPE html>
2
<html>
3
<head>
4
        <meta charset="utf-8">
5
        <link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico">
6
        <meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0">
7
        <link rel="stylesheet" type="text/css" href="../resources/syntax/shCore.css">
8
        <link rel="stylesheet" type="text/css" href="../resources/demo.css">
9
        <script type="text/javascript" language="javascript" src="../../media/js/jquery.js"></script>
10
        <script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js"></script>
11
        <script type="text/javascript" language="javascript" src="../resources/demo.js"></script>
12
 
13
        <title>DataTables examples - Ajax sourced data</title>
14
</head>
15
 
16
<body class="dt-example">
17
        <div class="container">
18
                <section>
19
                        <h1>DataTables example <span>Ajax sourced data</span></h1>
20
 
21
                        <div class="info">
22
                                <p>DataTables can read data from a server via Ajax, while still performing searching, ordering, paging
23
                                etc on the client-side. This is done through use of the <a href=
24
                                "//datatables.net/reference/option/ajax"><code class="option" title=
25
                                "DataTables initialisation option">ajax<span>DT</span></code></a> option, which has a number of options
26
                                to customise how the data is retrieved from the server.</p>
27
 
28
                                <p>The examples in this section demonstrate the use of Ajax loading data in DataTables, with
29
                                client-side processing.</p>
30
                        </div>
31
                </section>
32
        </div>
33
 
34
        <section>
35
                <div class="footer">
36
                        <div class="gradient"></div>
37
 
38
                        <div class="liner">
39
                                <div class="toc">
40
                                        <div class="toc-group">
41
                                                <h3><a href="./index.html">Ajax</a></h3>
42
                                                <ul class="toc">
43
                                                        <li><a href="./simple.html">Ajax data source (arrays)</a></li>
44
                                                        <li><a href="./objects.html">Ajax data source (objects)</a></li>
45
                                                        <li><a href="./deep.html">Nested object data (objects)</a></li>
46
                                                        <li><a href="./objects_subarrays.html">Nested object data (arrays)</a></li>
47
                                                        <li><a href="./orthogonal-data.html">Orthogonal data</a></li>
48
                                                        <li><a href="./null_data_source.html">Generated content for a column</a></li>
49
                                                        <li><a href="./custom_data_property.html">Custom data source property</a></li>
50
                                                        <li><a href="./custom_data_flat.html">Flat array data source</a></li>
51
                                                        <li><a href="./defer_render.html">Deferred rendering for speed</a></li>
52
                                                </ul>
53
                                        </div>
54
                                </div>
55
 
56
                                <div class="epilogue">
57
                                        <p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full
58
                                        information about its API properties and methods.<br>
59
                                        Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and
60
                                        <a href="http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of
61
                                        DataTables.</p>
62
 
63
                                        <p class="copyright">DataTables designed and created by <a href=
64
                                        "http://www.sprymedia.co.uk">SpryMedia Ltd</a> &#169; 2007-2014<br>
65
                                        DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
66
                                </div>
67
                        </div>
68
                </div>
69
        </section>
70
</body>
71
</html>