form-debug.js

来自「php绿色服务器,让大家试用greenamp」· JavaScript 代码 · 共 2,414 行 · 第 1/5 页

JS
2,414
字号
        getValue : function(){        return this.parseDate(Ext.form.DateField.superclass.getValue.call(this)) || "";    },        setValue : function(date){        Ext.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));    },        parseDate : function(value){        return (!value || value instanceof Date) ?               value : Date.parseDate(value, this.format);    },        formatDate : function(date){        return (!date || !(date instanceof Date)) ?               date : date.dateFormat(this.format);    },        menuListeners : {        select: function(m, d){            this.setValue(d);        },        show : function(){             this.onFocus();        },        hide : function(){            this.focus();            var ml = this.menuListeners;            this.menu.un("select", ml.select,  this);            this.menu.un("show", ml.show,  this);            this.menu.un("hide", ml.hide,  this);        }    },            onTriggerClick : function(){        if(this.disabled){            return;        }        if(this.menu == null){            this.menu = new Ext.menu.DateMenu();        }        Ext.apply(this.menu.picker,  {            minDate : this.minValue,            maxDate : this.maxValue,            disabledDatesRE : this.ddMatch,            disabledDatesText : this.disabledDatesText,            disabledDays : this.disabledDays,            disabledDaysText : this.disabledDaysText,            format : this.format,            minText : String.format(this.minText, this.formatDate(this.minValue)),            maxText : String.format(this.maxText, this.formatDate(this.maxValue))        });        this.menu.on(Ext.apply({}, this.menuListeners, {            scope:this        }));        this.menu.picker.setValue(this.getValue() || new Date());        this.menu.show(this.el, "tl-bl?");    }});Ext.form.Checkbox = function(config){    Ext.form.Checkbox.superclass.constructor.call(this, config);    this.addEvents({                check : true    });};Ext.extend(Ext.form.Checkbox, Ext.form.Field,  {        focusClass : "x-form-check-focus",        fieldClass: "x-form-field",        checked: false,        defaultAutoCreate : { tag: "input", type: 'checkbox', autocomplete: "off"},        boxLabel : undefined,            setSize : function(w, h){        if(!this.wrap){            this.width = w;            this.height = h;            return;        }        this.wrap.setSize(w, h);        if(!this.boxLabel){            this.el.alignTo(this.wrap, 'c-c');        }    },    initEvents : function(){        Ext.form.Checkbox.superclass.initEvents.call(this);        this.el.on("click", this.onClick,  this);        this.el.on("change", this.onClick,  this);    },            onRender : function(ct, position){        Ext.form.Checkbox.superclass.onRender.call(this, ct, position);        if(this.inputValue !== undefined){            this.el.dom.value = this.inputValue;        }        this.wrap = this.el.wrap({cls: "x-form-check-wrap"});        if(this.boxLabel){            this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});        }        if(this.checked){            this.setValue(true);        }    },        initValue : Ext.emptyFn,        getValue : function(){        if(this.rendered){            return this.el.dom.checked;        }        return false;    },    onClick : function(){        if(this.el.dom.checked != this.checked){            this.setValue(this.el.dom.checked);        }    },        setValue : function(v){        this.checked = (v === true || v === 'true' || v == '1');        if(this.el && this.el.dom){            this.el.dom.checked = this.checked;        }        this.fireEvent("check", this, this.checked);    }});Ext.form.Radio = function(){    Ext.form.Radio.superclass.constructor.apply(this, arguments);};Ext.extend(Ext.form.Radio, Ext.form.Checkbox, {    inputType: 'radio'});Ext.form.ComboBox = function(config){    Ext.form.ComboBox.superclass.constructor.call(this, config);    this.addEvents({                'expand' : true,                'collapse' : true,                'beforeselect' : true,                'select' : true,                'beforequery': true    });    if(this.transform){        var s = Ext.getDom(this.transform);        if(!this.hiddenName){            this.hiddenName = s.name;        }        if(!this.store){            this.mode = 'local';            var d = [], opts = s.options;            for(var i = 0, len = opts.length;i < len; i++){                var o = opts[i];                var value = (Ext.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;                if(o.selected) {                    this.value = value;                }                d.push([value, o.text]);            }            this.store = new Ext.data.SimpleStore({                'id': 0,                fields: ['value', 'text'],                data : d            });            this.valueField = 'value';            this.displayField = 'text';        }        s.name = Ext.id();         if(!this.lazyRender){            this.target = true;            this.el = Ext.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);            s.parentNode.removeChild(s);             this.render(this.el.parentNode);        }else{            s.parentNode.removeChild(s);         }    }    this.selectedIndex = -1;    if(this.mode == 'local'){        if(config.queryDelay === undefined){            this.queryDelay = 10;        }        if(config.minChars === undefined){            this.minChars = 0;        }    }};Ext.extend(Ext.form.ComboBox, Ext.form.TriggerField, {                    defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},        listWidth: undefined,        displayField: undefined,        valueField: undefined,        hiddenName: undefined,        listClass: '',        selectedClass: 'x-combo-selected',        triggerClass : 'x-form-arrow-trigger',        shadow:'sides',        listAlign: 'tl-bl?',        maxHeight: 300,        triggerAction: 'query',        minChars : 4,        typeAhead: false,        queryDelay: 500,        pageSize: 0,        selectOnFocus:false,        queryParam: 'query',        loadingText: 'Loading...',        resizable: false,        handleHeight : 8,        editable: true,        allQuery: '',        mode: 'remote',        minListWidth : 70,        forceSelection:false,        typeAheadDelay : 250,        valueNotFoundText : undefined,        onRender : function(ct, position){        Ext.form.ComboBox.superclass.onRender.call(this, ct, position);        if(this.hiddenName){            this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id: this.hiddenName},                    'before', true);            this.hiddenField.value =                this.hiddenValue !== undefined ? this.hiddenValue :                this.value !== undefined ? this.value : '';                        this.el.dom.removeAttribute('name');        }        if(Ext.isGecko){            this.el.dom.setAttribute('autocomplete', 'off');        }        var cls = 'x-combo-list';        this.list = new Ext.Layer({            shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false        });        this.list.setWidth(this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth));        this.list.swallowEvent('mousewheel');        this.assetHeight = 0;        if(this.title){            this.header = this.list.createChild({cls:cls+'-hd', html: this.title});            this.assetHeight += this.header.getHeight();        }        this.innerList = this.list.createChild({cls:cls+'-inner'});        this.innerList.on('mouseover', this.onViewOver, this);        this.innerList.on('mousemove', this.onViewMove, this);        if(this.pageSize){            this.footer = this.list.createChild({cls:cls+'-ft'});            this.pageTb = new Ext.PagingToolbar(this.footer, this.store,                    {pageSize: this.pageSize});            this.assetHeight += this.footer.getHeight();        }        if(!this.tpl){            this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';        }        this.view = new Ext.View(this.innerList, this.tpl, {            singleSelect:true, store: this.store, selectedClass: this.selectedClass        });        this.view.on('click', this.onViewClick, this);        this.store.on('beforeload', this.onBeforeLoad, this);        this.store.on('load', this.onLoad, this);        this.store.on('loadexception', this.collapse, this);        if(this.resizable){            this.resizer = new Ext.Resizable(this.list,  {               pinned:true, handles:'se'            });            this.resizer.on('resize', function(r, w, h){                this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;                this.listWidth = w;                this.restrictHeight();            }, this);            this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');        }        if(!this.editable){            this.editable = true;            this.setEditable(false);        }    },        initEvents : function(){        Ext.form.ComboBox.superclass.initEvents.call(this);        this.keyNav = new Ext.KeyNav(this.el, {            "up" : function(e){                this.inKeyMode = true;                this.selectPrev();            },            "down" : function(e){                if(!this.isExpanded()){                    this.onTriggerClick();                }else{                    this.inKeyMode = true;                    this.selectNext();                }            },            "enter" : function(e){                this.onViewClick();                            },            "esc" : function(e){                this.collapse();            },            "tab" : function(e){                this.onViewClick(false);                return true;            },            scope : this,            doRelay : function(foo, bar, hname){                if(hname == 'down' || this.scope.isExpanded()){                   return Ext.KeyNav.prototype.doRelay.apply(this, arguments);                }                return true;            }        });        this.queryDelay = Math.max(this.queryDelay || 10,                this.mode == 'local' ? 10 : 250);        this.dqTask = new Ext.util.DelayedTask(this.initQuery, this);        if(this.typeAhead){            this.taTask = new Ext.util.DelayedTask(this.onTypeAhead, this);        }        if(this.editable !== false){            this.el.on("keyup", this.onKeyUp, this);        }        if(this.forceSelection){            this.on('blur', this.doForce, this);        }    },    onDestroy : function(){        if(this.view){            this.view.setStore(null);            this.view.el.removeAllListeners();            this.view.el.remove();            this.view.purgeListeners();        }        if(this.list){            this.list.destroy();        }        if(this.store){            this.store.un('beforeload', this.onBeforeLoad, this);            this.store.un('load', this.onLoad, this);            this.store.un('loadexception', this.collapse, this);        }        Ext.form.ComboBox.superclass.onDestroy.call(this);    },        fireKey : function(e){        if(e.isNavKeyPress() && !this.list.isVisible()){            this.fireEvent("specialkey", this, e);        }    },        onResize: function(w, h){        if(this.list && this.listWidth === undefined){            this.list.setWidth(Math.max(w, this.minListWidth));        }    },        setEditable : function(value){        if(value == this.editable){            return;        }        this.editable = value;        if(!value){            this.el.dom.setAttribute('readOnly', true);            this.el.on('mousedown', this.onTriggerClick,  this);            this.el.addClass('x-combo-noedit');        }else{            this.el.dom.setAttribute('readOnly', false);            this.el.un('mousedown', this.onTriggerClick,  this);            this.el.removeClass('x-combo-noedit');        }    },        onBeforeLoad : function(){        if(!this.hasFocus){            return;        }        this.innerList.update(this.loadingText ?               '<div class="loading-indicator">'+this.loadingText+'</div>' : '');        this.restrictHeight();        this.selectedIndex = -1;    },        onLoad : function(){        if(!this.hasFocus){            return;        }        if(this.store.getCount() > 0){            this.expand();            this.restrictHeight();            if(this.lastQuery == this.allQuery){                if(this.editable){                    this.el.dom.select();                }                if(!this.selectByValue(this.value, true)){                    this.select(0, true);                }            }else{                this.selectNext();                if(this.typeAhead && this.lastKey != Ext.EventObject.BACKSPACE && this.lastKey != Ext.EventObject.DELETE){                    this.taTask.delay(this.typeAheadDelay);                }            }        }else{            this.onEmptyResults();        }            },        onTypeAhead : function(){        if(this.store.getCount() > 0){            var r = this.store.getAt(0);            var newValue = r.data[this.displayField];            var len = newValue.length;            var selStart = this.getRawValue().length;            if(selStart != len){                this.setRawValue(newValue);

⌨️ 快捷键说明

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