Custom renderers
Registering a renderer
When you create a renderer, a good idea is to assign it as an alias that will refer to this particular renderer function. Handsontable defines 10 aliases by default:
autocomplete
forHandsontable.renderers.AutocompleteRenderer
base
forHandsontable.renderers.BaseRenderer
checkbox
forHandsontable.renderers.CheckboxRenderer
date
forHandsontable.renderers.DateRenderer
dropdown
forHandsontable.renderers.DropdownRenderer
html
forHandsontable.renderers.HtmlRenderer
numeric
forHandsontable.renderers.NumericRenderer
password
forHandsontable.renderers.PasswordRenderer
text
forHandsontable.renderers.TextRenderer
time
forHandsontable.renderers.TimeRenderer
It gives users a convenient way for defining which renderer should be used when table rendering was triggered. User doesn't need to know which renderer function is responsible for displaying the cell value, he does not even need to know that there is any function at all. What is more, you can change the render function associated with an alias without a need to change code that defines a table.
To register your own alias use Handsontable.renderers.registerRenderer()
function. It takes two arguments:
rendererName
- a string representing a renderer functionrenderer
- a renderer function that will be represented byrendererName
If you'd like to register asterixDecoratorRenderer
under alias asterix
you have to call:
Handsontable.renderers.registerRenderer('asterix', asterixDecoratorRenderer);
Choose aliases wisely. If you register your renderer under name that is already registered, the target function will be overwritten:
Handsontable.renderers.registerRenderer('text', asterixDecoratorRenderer);
// Now 'text' alias points to `asterixDecoratorRenderer` function, not Handsontable.renderers.TextRenderer
So, unless you intentionally want to overwrite an existing alias, try to choose a unique name. A good practice is prefixing your aliases with some custom name (for example your GitHub username) to minimize the possibility of name collisions. This is especially important if you want to publish your renderer, because you never know aliases has been registered by the user who uses your renderer.
Handsontable.renderers.registerRenderer('asterix', asterixDecoratorRenderer);
// Someone might already registered such alias
Handsontable.renderers.registerRenderer('my.asterix', asterixDecoratorRenderer); // That's better.
Using an alias
The final touch is to using the registered aliases, so that users can easily refer to it without the need to now the actual renderer function is.
To sum up, a well prepared renderer function should look like this:
(function(Handsontable){
function customRenderer(hotInstance, td, row, column, prop, value, cellProperties) {
// Optionally include `BaseRenderer` which is responsible for adding/removing CSS classes to/from the table cells.
Handsontable.renderers.BaseRenderer.apply(this, arguments);
// ...your custom logic of the renderer
}
// Register an alias
Handsontable.renderers.registerRenderer('my.custom', customRenderer);
})(Handsontable);
From now on, you can use customRenderer
like so:
var hot = new Handsontable(document.getElementById('container'), {
data: someData,
columns: [
{
renderer: 'my.custom'
}
]
});
Rendering custom HTML in cells
This example shows how to use custom cell renderers to display HTML content in a cell. This is a very powerful feature. Just remember to escape any HTML code that could be used for XSS attacks. In the below configuration:
- Title column uses built-in HTML renderer that allows any HTML. This is unsafe if your code comes from untrusted source. Take notice that a Handsontable user can use it to enter
<script>
or other potentially malicious tags using the cell editor! - Description column also uses HTML renderer (same as above)
- Comments column uses a custom renderer (
safeHtmlRenderer
). This should be safe for user input, because only certain tags are allowed - Cover column accepts image URL as a string and converts it to a
<img>
in the renderer
var data = [ { title: "Professional JavaScript for Web Developers", description: "This book provides a developer-level introduction along with more advanced and useful features of JavaScript.", comments: "I would rate it ★★★★☆", cover: "https://handsontable.com/docs/images/examples/professional-javascript-developers-nicholas-zakas.jpg" }, { title: "JavaScript: The Good Parts", description: "This book provides a developer-level introduction along with more advanced and useful features of JavaScript.", comments: "This is the book about JavaScript", cover: "https://handsontable.com/docs/images/examples/javascript-the-good-parts.jpg" }, { title: "JavaScript: The Definitive Guide", description: "JavaScript: The Definitive Guide provides a thorough description of the core JavaScript language and both the legacy and standard DOMs implemented in web browsers.", comments: "I've never actually read it, but the comments are highly positive.", cover: "https://handsontable.com/docs/images/examples/javascript-the-definitive-guide.jpg" } ], container1, hot1; container1 = document.getElementById('example1'); hot1 = new Handsontable(container1, { data: data, colWidths: [200, 200, 200, 80], colHeaders: ["Title", "Description", "Comments", "Cover"], columns: [ {data: "title", renderer: "html"}, {data: "description", renderer: "html"}, {data: "comments", renderer: safeHtmlRenderer}, {data: "cover", renderer: coverRenderer} ] }); // original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) function strip_tags(input, allowed) { var tags = /]*>/gi, commentsAndPhpTags = /|/gi; // making sure the allowed arg is a string containing only tags in lowercase () allowed = (((allowed || "") + "").toLowerCase().match(//g) || []).join(''); return input.replace(commentsAndPhpTags, '').replace(tags, function ($0, $1) { return allowed.indexOf('') > -1 ? $0 : ''; }); } function safeHtmlRenderer(instance, td, row, col, prop, value, cellProperties) { var escaped = Handsontable.helper.stringify(value); escaped = strip_tags(escaped, ''); //be sure you only allow certain HTML tags to avoid XSS threats (you should also remove unwanted HTML attributes) td.innerHTML = escaped; return td; } function coverRenderer (instance, td, row, col, prop, value, cellProperties) { var escaped = Handsontable.helper.stringify(value), img; if (escaped.indexOf('http') === 0) { img = document.createElement('IMG'); img.src = value; Handsontable.dom.addEvent(img, 'mousedown', function (e){ e.preventDefault(); // prevent selection quirk }); Handsontable.dom.empty(td); td.appendChild(img); } else { // render as text Handsontable.renderers.TextRenderer.apply(this, arguments); } return td; }
Rendering custom HTML in header
You can also put HTML into row and column headers. If you need to attach events to DOM elements like the checkbox below, just remember to identify the element by class name, not by id. This is because row and column headers are duplicated in the DOM tree and id attribute must be unique.
var isChecked, container2 = document.getElementById('example2'), hot2; hot2 = new Handsontable(container2, { columns: [ {}, {renderer: customRenderer} ], colHeaders: function (col) { var txt; switch (col) { case 0: return 'Bold and Beautiful'; case 1: txt = "Some checkbox"; return txt; } } }); function customRenderer(instance, td) { Handsontable.renderers.TextRenderer.apply(this, arguments); if (isChecked) { td.style.backgroundColor = 'yellow'; } else { td.style.backgroundColor = 'white'; } return td; } Handsontable.dom.addEvent(container2, 'mousedown', function (event) { if (event.target.nodeName == 'INPUT' && event.target.className == 'checker') { event.stopPropagation(); } }); Handsontable.dom.addEvent(container2, 'mouseup', function (event) { if (event.target.nodeName == 'INPUT' && event.target.className == 'checker') { isChecked = !event.target.checked; hot2.render(); } });