try this, hide some of the columns on databound
function onDataBound(sender, e)
{
var row = e.get_row();
var tr = row.get_container();
var productColumnIndex = 1;
if (tr.childNodes.length > productColumnIndex)
tr.childNodes[productColumnIndex].style.display = "none";
}