blob: e3061bf12f6444b6237344d8b9f3c6ab81a4363a (
plain)
1
2
3
4
5
6
7
|
com_vaadin_tests_components_grid_JavaScriptStringRenderer = function() {
this.render = function(cell, data) {
cell.element.textContent = data;
// This one is for IE8
cell.element.innerText = data;
}
}
|