Created
April 25, 2020 22:11
-
-
Save haigopi/e18c59abcf3d590a2c204bf46d536974 to your computer and use it in GitHub Desktop.
The bottom dock example ext js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.define("AlliBilli.view.main.center.Dock", { | |
extend: "Ext.toolbar.Toolbar", | |
xtype: "toolbar-overflowbar", | |
requires: [], | |
dock: "bottom", | |
border: false, | |
width: "100%", | |
overflowHandler: "scroller", | |
items: [ | |
{ | |
xtype: "button", | |
text: "Youtube Music", | |
id: "youTubeWndw", | |
iconCls: "fab fa-youtube", | |
tooltip: "Stay AdFree", | |
}, | |
"-", | |
{ | |
xtype: "button", | |
text: "Development Credits", | |
tooltip: "Helping hands are purer than saying lips.", | |
iconCls: "fas fa-tools", | |
}, | |
"->", | |
{ | |
xtype: "button", | |
text: "Collapse", | |
id: "exColl", | |
iconCls: "fas fa-expand-arrows-alt", | |
tooltip: "Close both side panels", | |
}, | |
], | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment