From f1a3bf5122a94887c22a0b9f738fec64ab68992a Mon Sep 17 00:00:00 2001 From: "McDonald, Ryan" Date: Tue, 15 Aug 2017 13:48:28 -0700 Subject: [PATCH] added a texttransform for 'none' which leaves column names as-is --- jquery.dynatable.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jquery.dynatable.js b/jquery.dynatable.js index 9285e1e..5784b22 100644 --- a/jquery.dynatable.js +++ b/jquery.dynatable.js @@ -1490,6 +1490,9 @@ }, lowercase: function(text) { return text.replace(/([A-Z])/g, function($1){return $1.toLowerCase();}); + }, + none: function(text) { + return text; } }, // Deserialize params in URL to object