Skip to content

Instantly share code, notes, and snippets.

@haigopi
Created April 25, 2020 22:11
Show Gist options
  • Save haigopi/e18c59abcf3d590a2c204bf46d536974 to your computer and use it in GitHub Desktop.
Save haigopi/e18c59abcf3d590a2c204bf46d536974 to your computer and use it in GitHub Desktop.
The bottom dock example ext js
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