Skip to content
Snippets Groups Projects
Select Git revision
  • 4d13f99d224da16638549d80611dca82866949e1
  • 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

index.ts

Blame
  • language.html 19.47 KiB
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
    	<head>
    		<meta http-equiv="content-type" content="text/html; charset=utf-8" />
    		<link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/media/images/favicon.ico" />
    		
    		<title>DataTables example</title>
    		<style type="text/css" title="currentStyle">
    			@import "../../media/css/demo_page.css";
    			@import "../../media/css/demo_table.css";
    		</style>
    		<script type="text/javascript" language="javascript" src="../../media/js/jquery.js"></script>
    		<script type="text/javascript" language="javascript" src="../../media/js/jquery.dataTables.js"></script>
    		<script type="text/javascript" charset="utf-8">
    			$(document).ready(function() {
    				$('#example').dataTable( {
    					"oLanguage": {
    						"sLengthMenu": "Display _MENU_ records per page",
    						"sZeroRecords": "Nothing found - sorry",
    						"sInfo": "Showing _START_ to _END_ of _TOTAL_ records",
    						"sInfoEmpty": "Showing 0 to 0 of 0 records",
    						"sInfoFiltered": "(filtered from _MAX_ total records)"
    					}
    				} );
    			} );
    		</script>
    	</head>
    	<body id="dt_example">
    		<div id="container">
    			<div class="full_width big">
    				DataTables dynamic language
    			</div>
    
    			<h1>Preamble</h1>
    			<p>Changing the language information displayed by DataTables is as simple as passing in a language object to the dataTable constructor. The example above shows a different set of English language definitions to be used, rather than the defaults.</p>
    			
    			<h1>Live example</h1>
    			<div id="demo">
    <table cellpadding="0" cellspacing="0" border="0" class="display" id="example">
    	<thead>
    		<tr>
    			<th>Rendering engine</th>
    			<th>Browser</th>
    			<th>Platform(s)</th>
    			<th>Engine version</th>
    			<th>CSS grade</th>
    		</tr>
    	</thead>
    	<tbody>
    		<tr class="gradeX">
    			<td>Trident</td>
    			<td>Internet Explorer 4.0</td>
    			<td>Win 95+</td>
    			<td class="center">4</td>
    			<td class="center">X</td>
    		</tr>
    		<tr class="gradeC">
    			<td>Trident</td>
    			<td>Internet Explorer 5.0</td>
    			<td>Win 95+</td>
    			<td class="center">5</td>
    			<td class="center">C</td>
    		</tr>
    		<tr class="gradeA">
    			<td>Trident</td>
    			<td>Internet Explorer 5.5</td>
    			<td>Win 95+</td>
    			<td class="center">5.5</td>
    			<td class="center">A</td>
    		</tr>