dhtnl中grid中列的操作问题
function eXcell_plateno(cell) { 
	if (cell) { 
		this.cell = cell;
		this.grid = this.cell.parentNode.grid;
	}
	this.edit = function() {
	}; 
	this.isDisabled = function() {
		return true;
	};
	this.getValue = function() {
		return this.cell.childNodes[0].innerHTML.toString()._dhx_trim();
	};
	this.setValue = function(val) {
		
	};
}
eXcell_plateno.prototype = new eXcell;
我想问下这些函数都代表的是什么意思,其中plateno是dhxGrid.setColTypes中的一个名称
------解决方案--------------------追问下,要在里面实现onclick事件又该怎么写,实现页面的跳转又该怎么写,最好给个实际例子(公司新人,想要干出点成绩,求大神成全啊)