aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/main/resources/com/vaadin/tests/components/grid/JavaScriptStringRendererWithDestoryMethod.js
blob: a75f2d5a633031f2c05fda337ba968a9188e6665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
com_vaadin_tests_components_grid_JavaScriptStringRendererWithDestoryMethod = function() {
	this.render = function(cell, data) {
		cell.element.textContent = data;
		// This one is for IE8
		cell.element.innerText = data;
	}

	this.destory = function(cell) {
		document.getElementById("clientLog").innerHTML += "destory: "
				+ cell.rowIndex + "/" + cell.columnIndex + "<br>";
	}

}