mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 09:47:31 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head>
 | |
| 	<meta charset="utf-8">
 | |
| 	<link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico">
 | |
| 	<link rel="stylesheet" type="text/css" href="../resources/syntax/shCore.css">
 | |
| 	<link rel="stylesheet" type="text/css" href="../resources/demo.css">
 | |
| 	<script type="text/javascript" language="javascript" src="../../media/js/jquery.js"></script>
 | |
| 	<script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js"></script>
 | |
| 	<script type="text/javascript" language="javascript" src="../resources/demo.js"></script>
 | |
| 
 | |
| 	<title>DataTables examples - Basic initialisation</title>
 | |
| </head>
 | |
| 
 | |
| <body class="dt-example">
 | |
| 	<div class="container">
 | |
| 		<section>
 | |
| 			<h1>DataTables example <span>- Basic initialisation</span></h1>
 | |
| 
 | |
| 			<div class="info">
 | |
| 				<p>DataTables is very simple to use as a jQuery plug-in with a huge range of customisable option. The
 | |
| 				examples in this section demonstrate basic initialisation of DataTables and how it can be easily
 | |
| 				customised by passing an object with the options you want.</p>
 | |
| 			</div>
 | |
| 		</section>
 | |
| 	</div>
 | |
| 
 | |
| 	<section>
 | |
| 		<div class="footer">
 | |
| 			<div class="gradient"></div>
 | |
| 
 | |
| 			<div class="liner">
 | |
| 				<div class="toc">
 | |
| 					<div class="toc-group">
 | |
| 						<h3><a href="./index.html">Basic initialisation</a></h3>
 | |
| 						<ul class="toc">
 | |
| 							<li><a href="./zero_configuration.html">Zero configuration</a></li>
 | |
| 							<li><a href="./filter_only.html">Feature enable / disable</a></li>
 | |
| 							<li><a href="./table_sorting.html">Default ordering (sorting)</a></li>
 | |
| 							<li><a href="./multi_col_sort.html">Multi-column ordering</a></li>
 | |
| 							<li><a href="./multiple_tables.html">Multiple tables</a></li>
 | |
| 							<li><a href="./hidden_columns.html">Hidden columns</a></li>
 | |
| 							<li><a href="./complex_header.html">Complex headers (rowspan and colspan)</a></li>
 | |
| 							<li><a href="./dom.html">DOM positioning</a></li>
 | |
| 							<li><a href="./flexible_width.html">Flexible table width</a></li>
 | |
| 							<li><a href="./state_save.html">State saving</a></li>
 | |
| 							<li><a href="./alt_pagination.html">Alternative pagination</a></li>
 | |
| 							<li><a href="./scroll_y.html">Scroll - vertical</a></li>
 | |
| 							<li><a href="./scroll_x.html">Scroll - horizontal</a></li>
 | |
| 							<li><a href="./scroll_xy.html">Scroll - horizontal and vertical</a></li>
 | |
| 							<li><a href="./scroll_y_theme.html">Scroll - vertical with jQuery UI ThemeRoller</a></li>
 | |
| 							<li><a href="./comma-decimal.html">Language - Comma decimal place</a></li>
 | |
| 							<li><a href="./language.html">Language options</a></li>
 | |
| 						</ul>
 | |
| 					</div>
 | |
| 				</div>
 | |
| 
 | |
| 				<div class="epilogue">
 | |
| 					<p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full
 | |
| 					information about its API properties and methods.<br>
 | |
| 					Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and
 | |
| 					<a href="http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of
 | |
| 					DataTables.</p>
 | |
| 
 | |
| 					<p class="copyright">DataTables designed and created by <a href=
 | |
| 					"http://www.sprymedia.co.uk">SpryMedia Ltd</a> © 2007-2014<br>
 | |
| 					DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
 | |
| 				</div>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</section>
 | |
| </body>
 | |
| </html> |