Skip to content

Instantly share code, notes, and snippets.

@reachkamrul
Last active July 27, 2021 10:31
Show Gist options
  • Save reachkamrul/59d191933fb1ab7f6008902d6f94c43a to your computer and use it in GitHub Desktop.
Save reachkamrul/59d191933fb1ab7f6008902d6f94c43a to your computer and use it in GitHub Desktop.
var columnKey = "number"; //Give your column key here
function runAll (){
$('.ninja_clmn_nm_'+columnKey).each(function(){
$(this).text( $(this).text().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,") );
});
}
runAll();
$table.on('after.ft.filtering', function() {
runAll();
});
$table.on('after.ft.paging', function() {
runAll();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment