overflow.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:2k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ Ext.onReady(function(){
  2.     var handleAction = function(action){
  3.         Ext.example.msg('<b>Action</b>', 'You clicked "'+action+'"');
  4.     };
  5.     
  6.     var p = new Ext.Window({
  7.         title: 'Standard',
  8.         closable: false,
  9.         height:250,
  10.         width: 500,
  11.         bodyStyle: 'padding:10px',
  12.         contentEl: 'content',
  13.         autoScroll: true,
  14.         tbar: [{
  15.             xtype:'splitbutton',
  16.             text: 'Menu Button',
  17.             iconCls: 'add16',
  18.             handler: handleAction.createCallback('Menu Button'),
  19.             menu: [{text: 'Menu Item 1', handler: handleAction.createCallback('Menu Item 1')}]
  20.         },'-',{
  21.             xtype:'splitbutton',
  22.             text: 'Cut',
  23.             iconCls: 'add16',
  24.             handler: handleAction.createCallback('Cut'),
  25.             menu: [{text: 'Cut menu', handler: handleAction.createCallback('Cut menu')}]
  26.         },{
  27.             text: 'Copy',
  28.             iconCls: 'add16',
  29.             handler: handleAction.createCallback('Copy')
  30.         },{
  31.             text: 'Paste',
  32.             iconCls: 'add16',
  33.             menu: [{text: 'Paste menu', handler: handleAction.createCallback('Paste menu')}]
  34.         },'-',{
  35.             text: 'Format',
  36.             iconCls: 'add16',
  37.             handler: handleAction.createCallback('Format')
  38.         },'->',{
  39.             text: 'Right',
  40.             iconCls: 'add16',
  41.             handler: handleAction.createCallback('Right')
  42.         }]
  43.     });
  44.     p.show();
  45. });