报表块初始化事件:
setTimeout(function(){
_g().getWidgetByName('报表块控件名').$inner.find('tr').mouseover(function() {
//所在行红色
$(this).css("background-color","red");
});
_g().getWidgetByName('报表块控件名').$inner.find('tr').mouseout(function() {
//还原
$(this).css("background-color","");
});
},1000);