function ProjectTabbedTablePane(_1,_2,_3,_4,_5,_6){
Lina.requireOnce("common/lina/widget/grid/scrollable.js");
if(arguments.length>0){
this.initPane(_1,_2,_3,_4,_5,_6);
}
}
ProjectTabbedTablePane.prototype=new ProjectTabbedPane();
ProjectTabbedTablePane.prototype.table=null;
ProjectTabbedTablePane.prototype.isSelectable=false;
ProjectTabbedTablePane.prototype.showContent=function(){
if(this.contentDiv!=null){
if(this.contentDiv.innerHTML==null||this.contentDiv.innerHTML==""){
this.load();
var _7=Lina.get(this.getTabId()+"_tableContainer");
if(_7!=null){
_7.style.height=(this.contentDiv.parentNode.parentNode.offsetHeight-46)+"px";
}
try{
this.table=new Lina.Widget.Grid.Scrollable({sourceTable:this.getTabId()+"_table",withRowHeaders:false,fixedWidth:true,selection:this.isSelectable});
this.table.eventsO.changeSelection.subscribe(Lina.Utils.Function.bind(this.onSelectionChanged,this));
}
catch(e){
AT.log(e,"error",e);
}
}
this.contentDiv.style.display="block";
}
};
ProjectTabbedTablePane.prototype.getSelectedRows=function(){
return this.table.getSelectedRows();
};
ProjectTabbedTablePane.prototype.removeRow=function(_8){
this.table.removeRow(_8);
};
ProjectTabbedTablePane.prototype.insertRow=function(_9,_a){
this.table.insertRow(_9,_a);
};
ProjectTabbedTablePane.prototype.onSelectionChanged=function(){
};

