⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 extsharp.debug.js

📁 经典编程900例(C语言),主要是C基础知识
💻 JS
📖 第 1 页 / 共 5 页
字号:
// ExtJS.js
//


Type.createNamespace('Ext');

////////////////////////////////////////////////////////////////////////////////
// Ext.ActionConfig

Ext.ActionConfig = function Ext_ActionConfig() {
    this.o = {};
}
Ext.ActionConfig.prototype = {
    
    text: function Ext_ActionConfig$text(value) {
        this.o['text'] = value;
        return this;
    },
    
    iconCls: function Ext_ActionConfig$iconCls(value) {
        this.o['iconCls'] = value;
        return this;
    },
    
    disabled: function Ext_ActionConfig$disabled(value) {
        this.o['disabled'] = value;
        return this;
    },
    
    hidden: function Ext_ActionConfig$hidden(value) {
        this.o['hidden'] = value;
        return this;
    },
    
    handler: function Ext_ActionConfig$handler(value) {
        this.o['handler'] = value;
        return this;
    },
    
    scope: function Ext_ActionConfig$scope(value) {
        this.o['scope'] = value;
        return this;
    },
    
    custom: function Ext_ActionConfig$custom(key, value) {
        this.o[key] = value;
        return this;
    },
    
    toDictionary: function Ext_ActionConfig$toDictionary() {
        return this.o;
    }
}


////////////////////////////////////////////////////////////////////////////////
// Ext.AjaxConfig

Ext.AjaxConfig = function Ext_AjaxConfig() {
    this.o = {};
}
Ext.AjaxConfig.prototype = {
    
    url: function Ext_AjaxConfig$url(value) {
        this.o['url'] = value;
        return this;
    },
    
    extraParams: function Ext_AjaxConfig$extraParams(value) {
        this.o['extraParams'] = value;
        return this;
    },
    
    defaultHeaders: function Ext_AjaxConfig$defaultHeaders(value) {
        this.o['defaultHeaders'] = value;
        return this;
    },
    
    method: function Ext_AjaxConfig$method(value) {
        this.o['method'] = value;
        return this;
    },
    
    timeout: function Ext_AjaxConfig$timeout(value) {
        this.o['timeout'] = value;
        return this;
    },
    
    autoAbort: function Ext_AjaxConfig$autoAbort(value) {
        this.o['autoAbort'] = value;
        return this;
    },
    
    disableCaching: function Ext_AjaxConfig$disableCaching(value) {
        this.o['disableCaching'] = value;
        return this;
    },
    
    listeners: function Ext_AjaxConfig$listeners(value) {
        this.o['listeners'] = value;
        return this;
    },
    
    custom: function Ext_AjaxConfig$custom(key, value) {
        this.o[key] = value;
        return this;
    },
    
    toDictionary: function Ext_AjaxConfig$toDictionary() {
        return this.o;
    }
}


////////////////////////////////////////////////////////////////////////////////
// Ext.BoxComponentConfig

Ext.BoxComponentConfig = function Ext_BoxComponentConfig() {
    this.o = {};
}
Ext.BoxComponentConfig.prototype = {
    
    height: function Ext_BoxComponentConfig$height(value) {
        this.o['height'] = value;
        return this;
    },
    
    width: function Ext_BoxComponentConfig$width(value) {
        this.o['width'] = value;
        return this;
    },
    
    autoHeight: function Ext_BoxComponentConfig$autoHeight(value) {
        this.o['autoHeight'] = value;
        return this;
    },
    
    autoWidth: function Ext_BoxComponentConfig$autoWidth(value) {
        this.o['autoWidth'] = value;
        return this;
    },
    
    deferHeight: function Ext_BoxComponentConfig$deferHeight(value) {
        this.o['deferHeight'] = value;
        return this;
    },
    
    xtype: function Ext_BoxComponentConfig$xtype(value) {
        this.o['xtype'] = value;
        return this;
    },
    
    id: function Ext_BoxComponentConfig$id(value) {
        this.o['id'] = value;
        return this;
    },
    
    cls: function Ext_BoxComponentConfig$cls(value) {
        this.o['cls'] = value;
        return this;
    },
    
    style: function Ext_BoxComponentConfig$style(value) {
        this.o['style'] = value;
        return this;
    },
    
    ctCls: function Ext_BoxComponentConfig$ctCls(value) {
        this.o['ctCls'] = value;
        return this;
    },
    
    plugins: function Ext_BoxComponentConfig$plugins(value) {
        this.o['plugins'] = value;
        return this;
    },
    
    applyTo: function Ext_BoxComponentConfig$applyTo(value) {
        this.o['applyTo'] = value;
        return this;
    },
    
    renderTo: function Ext_BoxComponentConfig$renderTo(value) {
        this.o['renderTo'] = value;
        return this;
    },
    
    disabledClass: function Ext_BoxComponentConfig$disabledClass(value) {
        this.o['disabledClass'] = value;
        return this;
    },
    
    allowDomMove: function Ext_BoxComponentConfig$allowDomMove(value) {
        this.o['allowDomMove'] = value;
        return this;
    },
    
    autoShow: function Ext_BoxComponentConfig$autoShow(value) {
        this.o['autoShow'] = value;
        return this;
    },
    
    hideMode: function Ext_BoxComponentConfig$hideMode(value) {
        this.o['hideMode'] = value;
        return this;
    },
    
    hideParent: function Ext_BoxComponentConfig$hideParent(value) {
        this.o['hideParent'] = value;
        return this;
    },
    
    listeners: function Ext_BoxComponentConfig$listeners(value) {
        this.o['listeners'] = value;
        return this;
    },
    
    custom: function Ext_BoxComponentConfig$custom(key, value) {
        this.o[key] = value;
        return this;
    },
    
    toDictionary: function Ext_BoxComponentConfig$toDictionary() {
        return this.o;
    }
}


////////////////////////////////////////////////////////////////////////////////
// Ext.BoxComponentEvents

Ext.BoxComponentEvents = function Ext_BoxComponentEvents() {
}
Ext.BoxComponentEvents.get_resize = function Ext_BoxComponentEvents$get_resize() {
    return 'resize';
}
Ext.BoxComponentEvents.get_move = function Ext_BoxComponentEvents$get_move() {
    return 'move';
}


////////////////////////////////////////////////////////////////////////////////
// Ext.ButtonConfig

Ext.ButtonConfig = function Ext_ButtonConfig() {
    this.o = {};
}
Ext.ButtonConfig.prototype = {
    
    text: function Ext_ButtonConfig$text(value) {
        this.o['text'] = value;
        return this;
    },
    
    icon: function Ext_ButtonConfig$icon(value) {
        this.o['icon'] = value;
        return this;
    },
    
    handler: function Ext_ButtonConfig$handler(value) {
        this.o['handler'] = value;
        return this;
    },
    
    scope: function Ext_ButtonConfig$scope(value) {
        this.o['scope'] = value;
        return this;
    },
    
    minWidth: function Ext_ButtonConfig$minWidth(value) {
        this.o['minWidth'] = value;
        return this;
    },
    
    tooltip: function Ext_ButtonConfig$tooltip(value) {
        this.o['tooltip'] = value;
        return this;
    },
    
    hidden: function Ext_ButtonConfig$hidden(value) {
        this.o['hidden'] = value;
        return this;
    },
    
    disabled: function Ext_ButtonConfig$disabled(value) {
        this.o['disabled'] = value;
        return this;
    },
    
    pressed: function Ext_ButtonConfig$pressed(value) {
        this.o['pressed'] = value;
        return this;
    },
    
    toggleGroup: function Ext_ButtonConfig$toggleGroup(value) {
        this.o['toggleGroup'] = value;
        return this;
    },
    
    repeat: function Ext_ButtonConfig$repeat(value) {
        this.o['repeat'] = value;
        return this;
    },
    
    tabIndex: function Ext_ButtonConfig$tabIndex(value) {
        this.o['tabIndex'] = value;
        return this;
    },
    
    enableToggle: function Ext_ButtonConfig$enableToggle(value) {
        this.o['enableToggle'] = value;
        return this;
    },
    
    menu: function Ext_ButtonConfig$menu(value) {
        this.o['menu'] = value;
        return this;
    },
    
    menuAlign: function Ext_ButtonConfig$menuAlign(value) {
        this.o['menuAlign'] = value;
        return this;
    },
    
    iconCls: function Ext_ButtonConfig$iconCls(value) {
        this.o['iconCls'] = value;
        return this;
    },
    
    type: function Ext_ButtonConfig$type(value) {
        this.o['type'] = value;
        return this;
    },
    
    clickEvent: function Ext_ButtonConfig$clickEvent(value) {
        this.o['clickEvent'] = value;
        return this;
    },
    
    handleMouseEvents: function Ext_ButtonConfig$handleMouseEvents(value) {
        this.o['handleMouseEvents'] = value;
        return this;
    },
    
    tooltipType: function Ext_ButtonConfig$tooltipType(value) {
        this.o['tooltipType'] = value;
        return this;
    },
    
    cls: function Ext_ButtonConfig$cls(value) {
        this.o['cls'] = value;
        return this;
    },
    
    template: function Ext_ButtonConfig$template(value) {
        this.o['template'] = value;
        return this;
    },
    
    xtype: function Ext_ButtonConfig$xtype(value) {
        this.o['xtype'] = value;
        return this;
    },
    
    id: function Ext_ButtonConfig$id(value) {
        this.o['id'] = value;
        return this;
    },
    
    style: function Ext_ButtonConfig$style(value) {
        this.o['style'] = value;
        return this;
    },
    
    ctCls: function Ext_ButtonConfig$ctCls(value) {
        this.o['ctCls'] = value;
        return this;
    },
    
    plugins: function Ext_ButtonConfig$plugins(value) {
        this.o['plugins'] = value;
        return this;
    },
    
    applyTo: function Ext_ButtonConfig$applyTo(value) {
        this.o['applyTo'] = value;
        return this;
    },
    
    renderTo: function Ext_ButtonConfig$renderTo(value) {
        this.o['renderTo'] = value;
        return this;
    },
    
    disabledClass: function Ext_ButtonConfig$disabledClass(value) {
        this.o['disabledClass'] = value;
        return this;
    },
    
    allowDomMove: function Ext_ButtonConfig$allowDomMove(value) {
        this.o['allowDomMove'] = value;
        return this;
    },
    
    autoShow: function Ext_ButtonConfig$autoShow(value) {
        this.o['autoShow'] = value;
        return this;
    },
    
    hideMode: function Ext_ButtonConfig$hideMode(value) {
        this.o['hideMode'] = value;
        return this;
    },
    
    hideParent: function Ext_ButtonConfig$hideParent(value) {
        this.o['hideParent'] = value;
        return this;
    },
    
    listeners: function Ext_ButtonConfig$listeners(value) {
        this.o['listeners'] = value;
        return this;
    },
    
    toggleHandler: function Ext_ButtonConfig$toggleHandler(value) {
        this.o['toggleHandler'] = value;
        return this;
    },
    
    custom: function Ext_ButtonConfig$custom(key, value) {
        this.o[key] = value;
        return this;
    },
    
    toDictionary: function Ext_ButtonConfig$toDictionary() {
        return this.o;
    }
}


////////////////////////////////////////////////////////////////////////////////
// Ext.ButtonEvents

Ext.ButtonEvents = function Ext_ButtonEvents() {
}
Ext.ButtonEvents.get_click = function Ext_ButtonEvents$get_click() {
    return 'click';
}
Ext.ButtonEvents.get_toggle = function Ext_ButtonEvents$get_toggle() {
    return 'toggle';
}
Ext.ButtonEvents.get_mouseover = function Ext_ButtonEvents$get_mouseover() {
    return 'mouseover';
}
Ext.ButtonEvents.get_mouseout = function Ext_ButtonEvents$get_mouseout() {
    return 'mouseout';
}
Ext.ButtonEvents.get_menushow = function Ext_ButtonEvents$get_menushow() {
    return 'menushow';
}
Ext.ButtonEvents.get_menuhide = function Ext_ButtonEvents$get_menuhide() {
    return 'menuhide';
}
Ext.ButtonEvents.get_menutriggerover = function Ext_ButtonEvents$get_menutriggerover() {
    return 'menutriggerover';
}
Ext.ButtonEvents.get_menutriggerout = function Ext_ButtonEvents$get_menutriggerout() {
    return 'menutriggerout';
}


////////////////////////////////////////////////////////////////////////////////
// Ext.ColorPaletteConfig

Ext.ColorPaletteConfig = function Ext_ColorPaletteConfig() {
    this.o = {};
}
Ext.ColorPaletteConfig.prototype = {
    
    itemCls: function Ext_ColorPaletteConfig$itemCls(value) {
        this.o['itemCls'] = value;
        return this;
    },
    
    value: function Ext_ColorPaletteConfig$value(value) {
        this.o['value'] = value;
        return this;
    },
    
    allowReselect: function Ext_ColorPaletteConfig$allowReselect(value) {

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -