From b41687e3bcc72f3c8f2933a1cac4022d044b75fc Mon Sep 17 00:00:00 2001 From: Allan Jardine Date: Fri, 2 Dec 2016 17:36:46 +0000 Subject: [PATCH] Fix - example: Typo in row callback example --- .datatables-commit-sync | 2 +- examples/advanced_init/row_callback.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.datatables-commit-sync b/.datatables-commit-sync index 4f8ed819..2bdf2fed 100644 --- a/.datatables-commit-sync +++ b/.datatables-commit-sync @@ -1 +1 @@ -6f6b3d4b14fbba4a8818d8a24dc71763f9e92c80 +a35f93fe2a3440ad980300a19b82063afc771408 diff --git a/examples/advanced_init/row_callback.html b/examples/advanced_init/row_callback.html index 2a1138de..f09bcb9e 100644 --- a/examples/advanced_init/row_callback.html +++ b/examples/advanced_init/row_callback.html @@ -48,7 +48,7 @@ $(document).ready(function() {

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 createdRow function is called once and once only. It is passed the create row node which can then be modified.

-

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. +

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 columns.createdCell could also be used to create exactly the same effect.