|
|
@@ -14,6 +14,7 @@ Ext.define('school.util.BaseUtil', {
|
|
|
var panel = mainTab.query('[tabId="' + id + '"]')[0];
|
|
|
if (!panel) {
|
|
|
panel = Ext.create('school.view.core.tab.Panel', {
|
|
|
+ tooltip: title,
|
|
|
tabId: id,
|
|
|
title: title,
|
|
|
viewType: xtype,
|
|
|
@@ -52,6 +53,7 @@ Ext.define('school.util.BaseUtil', {
|
|
|
var currentTab = this.getCurrentTab();
|
|
|
currentTab.tabId = id;
|
|
|
currentTab.setTitle(title);
|
|
|
+ currentTab.setTooltip(title);
|
|
|
},
|
|
|
|
|
|
/**
|