Skip to content

Instantly share code, notes, and snippets.

@warpech
Last active December 24, 2015 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save warpech/6776152 to your computer and use it in GitHub Desktop.
Save warpech/6776152 to your computer and use it in GitHub Desktop.
Handsontable.PluginHooks.add('afterRenderer', function(TD, row, col, prop, value, cellProperties) {
if (value === null) {
TD.style.fontStyle = 'italic';
TD.appendChild(document.createTextNode('NULL'));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment