You are on page 1of 1

dataGrid1.onRowDraw = function dataGrid1_onRowDraw (event) { //look here: http://forum.wakanda.org/showthread.php?1661-Grid-m anipulation-with-onRowDraw if (event.row.cells[1].value){ //event.row.cells[1].insideCell.html(event.row.cells[1]. value+'<b>poop</b>' ); event.row.cells[0].insideCell.html('<div>'+ event.row.cells[0].value+'</div><div>'+ event.row.cells[1].

value+'</div>' ); var dom = $(event.row.dom); dom.addClass('waf-project-bigcells'); dom.children($('.waf-dataGrid-cell')).addClass('waf-proj ect-subbigcells'); } };

You might also like