Ext动态改变grid tbar 按钮tip

grid 动态改变工具栏按钮的tooltip的时候,可以在按钮属性里面加入:
 setTooltip : function(tip){
     this.el.child(this.buttonSelector).dom[this.tooltipType] = tip;

}
参数是要显示的tip

或者直接

 

{
                text:'刷新',
                id:'refresh',
                cls:'x-btn-text-icon',
                icon:'images/business/refresh.gif',
                handler:function(btn){
                    btn.btnEl.dom[btn.tooltipType] = "刷新";

                  }

}

你可能感兴趣的:(extjs)