📄 toolbar.js
字号:
/** * @author Administrator */Ext.onReady(function(){ // Buttons added to the toolbar of the Panel above // to test/demo doing group operations with an action var tb = new Ext.Toolbar(); tb.render('toolbar'); tb.add('->', { iconCls: 'logout', text: 'Logout', handler: function(){ Ext.Msg.confirm('Logout', 'Are you sure?', function(btn, text){ if (btn == 'yes') { alert('yes'); } }); } });});
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -