Skip to content
Snippets Groups Projects
Select Git revision
  • 25531fa45fe703daec903f88df2fcc0f03ebe7f8
  • master default protected
  • rednatco-v2
  • rednatco
  • test
  • ntc-tube-uniform-color
  • ntc-tube-missing-atoms
  • restore-vertex-array-per-program
  • watlas2
  • dnatco_new
  • cleanup-old-nodejs
  • webmmb
  • fix_auth_seq_id
  • update_deps
  • ext_dev
  • ntc_balls
  • nci-2
  • plugin
  • bugfix-0.4.5
  • nci
  • servers
  • v0.5.0-dev.1
  • v0.4.5
  • v0.4.4
  • v0.4.3
  • v0.4.2
  • v0.4.1
  • v0.4.0
  • v0.3.12
  • v0.3.11
  • v0.3.10
  • v0.3.9
  • v0.3.8
  • v0.3.7
  • v0.3.6
  • v0.3.5
  • v0.3.4
  • v0.3.3
  • v0.3.2
  • v0.3.1
  • v0.3.0
41 results

generate.ts

Blame
  • table_TopSources.html 970 B
    <html>
    <head>
    <style type="text/css" title="currentStyle">
    @import "datatables/media/css/demo_table.css";
    </style>
    <script type="text/javascript" language="javascript" src="datatables/media/js/jquery.js"></script>
    <script type="text/javascript" language="javascript" src="datatables/media/js/jquery.dataTables.js"></script>
    <script type="text/javascript" charset="utf-8">
    $(document).ready(function() {
        var oTable = $('#example').dataTable( {
            "bFilter": true,
    	"iDisplayLength": 20,
            "aaSorting": [],
            "sAjaxSource": "table_TopSources.php",
            "aoColumns": [
                { "mDataProp": "source" },
                { "mDataProp": "events" },
                { "mDataProp": "totalScale" }
            ]
        } );
    } );
    
    </script>
    </head>
    <body>
    <h2>TopSources</h2>
    <table cellpadding="0" cellspacing="0" border="0" class="display" id="example" width="100%">
    <thead>
    	<th>source</th>
    	<th>events</th>
    	<th>totalScale</th>
    </thead>
    </table>
    </body>
    </html>