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

📄 statusbar-advanced.js

📁 ext-2.3.0
💻 JS
字号:
/*
 * Ext JS Library 2.3.0
 * Copyright(c) 2006-2009, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */

Ext.QuickTips.init();Ext.onReady(function(){    var fp = new Ext.FormPanel({        id: 'status-form',        renderTo: Ext.getBody(),        labelWidth: 75,        width: 350,        buttonAlign: 'right',        border: false,        bodyStyle: 'padding:10px 10px 0;',        defaults: {            anchor: '95%',            allowBlank: false,            selectOnFocus: true,            msgTarget: 'side'        },        items:[{            xtype: 'textfield',            fieldLabel: 'Name',            blankText: 'Name is required'        },{            xtype: 'datefield',            fieldLabel: 'Birthdate',            blankText: 'Birthdate is required'        }],        buttons: [{            text: 'Save',            handler: function(){                if(fp.getForm().isValid()){                    var sb = Ext.getCmp('form-statusbar');                    sb.showBusy('Saving form...');                    fp.getEl().mask();                    fp.getForm().submit({                        url: 'fake.php',                        success: function(){                            sb.setStatus({                                text:'Form saved!',                                 iconCls:'',                                clear: true                            });                            fp.getEl().unmask();                        }                    });                }            }        }]    });        new Ext.Panel({        title: 'StatusBar with Integrated Form Validation',        renderTo: Ext.getBody(),        width: 350,        autoHeight: true,        layout: 'fit',        items: fp,        bbar: new Ext.StatusBar({            id: 'form-statusbar',            defaultText: 'Ready',            plugins: new Ext.ux.ValidationStatus({form:'status-form'})        })    });    });

⌨️ 快捷键说明

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