1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-19 17:54:14 +01:00

Site: Fix 404 errors

This commit is contained in:
Allan Jardine 2014-01-31 13:26:22 +00:00
parent 61e23fb2fb
commit fd261b1dd7
10 changed files with 24 additions and 24 deletions

View File

@ -1 +1 @@
17650e654f3067856f042b94df4df75d249f6176
316e736a56ffa6239de8ac64c2752ced55052d81

View File

@ -52,8 +52,8 @@ $(document).ready(function() {
be used like the jQuery <code>on()</code> method, but will automatically append the <code>dt</code>
namespace if required.</p>
<p>This example shows the use of the <a href="//datatables.net/reference/event/sort"><code class=
"event" title="Event">sort</code></a>, <a href="//datatables.net/reference/event/search"><code class=
<p>This example shows the use of the <a href="//datatables.net/reference/event/order"><code class=
"event" title="Event">order</code></a>, <a href="//datatables.net/reference/event/search"><code class=
"event" title="Event">search</code></a> and <a href=
"//datatables.net/reference/event/page"><code class="event" title="Event">page</code></a> events by
adding a notification that the event fired to an element on the page to show that they have indeed

View File

@ -51,8 +51,8 @@ $(document).ready(function() {
<p>In this case a trivial example of making the 'salary' column blue and bold by adding a CSS class to
the container cell if the salary is greater than $4,000. Note that <a href=
"//datatables.net/reference/option/createdCell"><code class="option" title=
"Initialisation option">createdCell</code></a> could also be used to create exactly the same
"//datatables.net/reference/option/columns.createdCell"><code class="option" title=
"Initialisation option">columns.createdCell</code></a> could also be used to create exactly the same
effect.</p>
</div>

View File

@ -47,8 +47,8 @@ $(document).ready(function() {
<p>By default DataTables will assume that an array data source is to be used and will read the
information to be displayed in each column from the row's array using the column index, making working
with arrays very simple (note that this can be changed, or objects used may using the <a href=
"//datatables.net/reference/option/column.data"><code class="option" title=
"Initialisation option">column.data</code></a> option, shown in other examples).</p>
"//datatables.net/reference/option/columns.data"><code class="option" title=
"Initialisation option">columns.data</code></a> option, shown in other examples).</p>
<p>The example below shows DataTables loading data for a table from arrays as the data source, where
the structure of the row's data source in this example is:</p>

View File

@ -51,10 +51,10 @@ $(document).ready(function() {
</ul>
<p>The language strings of 'First', 'Previous' etc can be optionally through the internationalisation
options of DataTables; <a href="//datatables.net/reference/option/language.first"><code class="option"
title="Initialisation option">language.first</code></a>, <a href=
"//datatables.net/reference/option/language.previous"><code class="option" title=
"Initialisation option">language.previous</code></a> etc.</p>
options of DataTables; <a href="//datatables.net/reference/option/language.paginate.first"><code class=
"option" title="Initialisation option">language.paginate.first</code></a>, <a href=
"//datatables.net/reference/option/language.paginate.previous"><code class="option" title=
"Initialisation option">language.paginate.previous</code></a> etc.</p>
<p>Additional options for the buttons that are shown can be added through the use of pagination type
plug-ins. Furthermore, how the buttons are actually shown can be altered through the use of plug-in

View File

@ -45,8 +45,8 @@ $(document).ready(function() {
<p>There are times when you might find it useful to display only a sub-set of the information that was
available in the original table. For example you might want to reduce the amount of data shown on
screen to make it clearer for the user. This is done through the <a href=
"//datatables.net/reference/option/visible"><code class="option" title=
"Initialisation option">visible</code></a> column option.</p>
"//datatables.net/reference/option/columns.visible"><code class="option" title=
"Initialisation option">columns.visible</code></a> column option.</p>
<p>The column that is hidden is still part of the table and can be made visible through the <code>api
column().visible()</code> API method at a future time if you wish to have columns which can be shown

View File

@ -50,18 +50,18 @@ $(document).ready(function() {
column).</li>
<li>On a per-column basis (i.e. order by a specific column and then a secondary column if the data
in the first column is identical), through the <a href=
"//datatables.net/reference/option/orderData"><code class="option" title=
"Initialisation option">orderData</code></a> option.</li>
<li>Using the <a href="//datatables.net/reference/option/orderData"><code class="option" title=
"Initialisation option">orderData</code></a> option to specify a multiple column order by default
(for example <code>[ [0,'asc'], [1,'asc'] ]</code>).</li>
"//datatables.net/reference/option/columns.orderData"><code class="option" title=
"Initialisation option">columns.orderData</code></a> option.</li>
<li>Using the <a href="//datatables.net/reference/option/columns.orderData"><code class="option"
title="Initialisation option">columns.orderData</code></a> option to specify a multiple column
order by default (for example <code>[ [0,'asc'], [1,'asc'] ]</code>).</li>
<li>Through the <a href="//datatables.net/reference/api/order()"><code class="api" title=
"API method">order()</code></a> API method.</li>
</ul>
<p>Note that, the ability for the user to shift click to order multiple columns can be disabled through
the <a href="//datatables.net/reference/option/orderMutli"><code class="option" title=
"Initialisation option">orderMutli</code></a> option.</p>
the <a href="//datatables.net/reference/option/orderMulti"><code class="option" title=
"Initialisation option">orderMulti</code></a> option.</p>
<p>The example below shows the first column having a secondary order applied to the second column in
the table, vice-versa for the second column being tied directly to the first and the salary column to

View File

@ -51,8 +51,8 @@ $('#example').dataTable( {
"Initialisation option">stateDuration</code></a> initialisation parameter (2 hours by default).</p>
<p>The example below simply shows state saving enabled in DataTables with the <a href=
"//datatables.net/reference/option/saveSave"><code class="option" title=
"Initialisation option">saveSave</code></a> option.</p>
"//datatables.net/reference/option/stateSave"><code class="option" title=
"Initialisation option">stateSave</code></a> option.</p>
</div>
<table id="example" class="display" cellspacing="0" width="100%">

View File

@ -57,7 +57,7 @@ $(document).ready(function() {
with automatic type detection.</p>
<p>A wide variety of ready made ordering plug-ins can be found on <a href=
"//datatables.net/plug-ins/order">the DataTables plug-ins page</a>.</p>
"//datatables.net/plug-ins/sorting">the DataTables plug-ins page</a>.</p>
</div>
<table id="example" class="display" cellspacing="0" width="100%">

View File

@ -56,7 +56,7 @@ $(document).ready(function() {
Europe.</p>
<p>A wide variety of ready made ordering plug-ins can be found on <a href=
"//datatables.net/plug-ins/order">the DataTables plug-ins page</a>.</p>
"//datatables.net/plug-ins/sorting">the DataTables plug-ins page</a>.</p>
</div>
<table id="example" class="display" cellspacing="0" width="100%">