// Il seguente snippet deve essere inserito nell'evento DatiCaricatiClient per applicare uno stile differente ad una cella in base al valore in essa contenuto
var i;
for (i=0;i<$('#<MobileDataView1>').rowCount();i++) {
var c=$('#<MobileDataView1>').getCell(i+1,"TIPO");
if ($('#<MobileDataView1>').getCellValue(i+1,"TIPO")==1)
c.css("background","red")
else
c.css("background","")
}