'Extjs Ext.MessageBox
I am trying to add a tooltip(Ext.tip.ToolTip) to the title of the message box(Ext.MessageBox)
I am using
Ext.MessageBox.show( { title: 'Title', subtitle: 'Subtitle', message: 'Message' });
How can I add an Ext.tip.ToolTip to the title of the Message Box?
Solution 1:[1]
THis is for the modern toolkit. May be similar for classic.
Ext.MessageBox has a header config. This can be a config object. The header is a Ext.panel.Header and this object has a tooltip config.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | mcg1103 |
