19 lines
479 B
JavaScript
19 lines
479 B
JavaScript
class CoachProfileView extends EICDomContent {
|
|
|
|
DOMContentLoaded() {
|
|
ui.eicfy(this.el);
|
|
|
|
this.tabs = new Tab();
|
|
this.tabs.addTabs(this.findAll('menu li'), this.findAll('.panel'));
|
|
|
|
this.evaluationList = new DataGrid(this.find('.performance [eicdatagrid]'), {
|
|
headers: [
|
|
{label: 'project'},
|
|
{label: 'rating'}
|
|
]
|
|
})
|
|
}
|
|
|
|
}
|
|
|
|
app.registerClass('CoachProfileView', CoachProfileView); |