JavaScript Data Grid Cell renderer
Create a custom cell renderer function, to have full control over how a cell looks.
Overview
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.
Use a cell renderer
Use the renderer name of your choice when configuring the column:
const container = document.querySelector('#container');
const hot = new Handsontable(container, {
data: someData,
columns: [{
renderer: 'numeric'
}]
});
Register custom cell renderer
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.
Use 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 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);
From now on, you can use customRenderer
like so:
const container = document.querySelector('#container');
const hot = new Handsontable(container, {
data: someData,
columns: [{
renderer: 'my.custom'
}]
});
Render 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
Render 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.
Add event listeners in cell renderer function
If you are writing an advanced cell renderer, and you want to add some custom behavior after a certain user action (i.e. after user hover a mouse pointer over a cell) you might be tempted to add an event listener directly to table cell node passed as an argument to the renderer
function. Unfortunately, this will almost always cause you trouble and you will end up with either performance issues or having the listeners attached to the wrong cell.
This is because Handsontable:
- Calls
renderer
functions multiple times per cell - this can lead to having multiple copies of the same event listener attached to a cell - Reuses table cell nodes during table scrolling and adding/removing new rows/columns - this can lead to having event listeners attached to the wrong cell
Before deciding to attach an event listener in cell renderer make sure, that there is no Handsontable event that suits your needs. Using Handsontable events system is the safest way to respond to user actions.
If you did't find a suitable Handsontable event put the cell content into a wrapping <div>
, attach the event listener to the wrapper and then put it into the table cell.
Performance considerations
Cell renderers are called separately for every displayed cell, during every table render. Table can be rendered multiple times during its lifetime (after table scroll, after table sorting, after cell edit etc.), therefore you should keep your renderer
functions as simple and fast as possible or you might experience a performance drop, especially when dealing with large sets of data.
Related articles
Related guides
- Custom renderer in React
- Custom renderer in Angular
- Custom renderer in Vue 2
- Custom renderer in Vue 3
Related API reference
- APIs:
- Configuration options:
- Core methods:
- Hooks: