1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-01-30 23:52:11 +01:00

Fix - example: Typo in row callback example

This commit is contained in:
Allan Jardine 2016-12-02 17:36:46 +00:00
parent 5dcd176847
commit b41687e3bc
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
6f6b3d4b14fbba4a8818d8a24dc71763f9e92c80
a35f93fe2a3440ad980300a19b82063afc771408

View File

@ -48,7 +48,7 @@ $(document).ready(function() {
<p>The following example shows how a callback function can be used to format a particular row at draw time. For each row that is generated for display, the
<a href="//datatables.net/reference/option/createdRow"><code class="option" title="DataTables initialisation option">createdRow</code></a> function is called once
and once only. It is passed the create row node which can then be modified.</p>
<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.
<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 $150,000.
Note that <a href="//datatables.net/reference/option/columns.createdCell"><code class="option" title=
"DataTables initialisation option">columns.createdCell</code></a> could also be used to create exactly the same effect.</p>
</div>