日期:2014-05-16 浏览次数:20545 次
// tab主面板 index.tabPanel = new Ext.TabPanel({ id: 'mainTabPanel', region: 'center', activeTab: 0, deferredRender: false, enableTabScroll: true, // bodyStyle:'height:100%', defaults: { layout: 'fit', autoScroll: true }, plugins: new Ext.ux.TabCloseMenu({ closeTabText: '关闭标签页', closeOtherTabsText: '关闭其他标签页', closeAllTabsText: '关闭所有标签页' }), items: [{ id: 'home', title: '我的主页', iconCls: 'home', closable: false, autoScroll: true, autoLoad: { url: index.welcome, scripts: true, nocache: true } }], listeners: { 'bodyresize': function (panel, neww, newh) { // 自动调整tab下面的panel的大小 var tab = panel.getActiveTab(); var centerpanel = Ext.getCmp(tab.id + "_div_panel"); if (centerpanel) { centerpanel.setHeight(newh - 2); centerpanel.setWidth(neww - 2); } } } });
<%@ page language="java" contentType="text/html; charset=UTF-8"%> <%@ include file="/WEB-INF/views/commons/taglibs.jsp"%> <div id="changePwdDiv" style="width: 100%; height: 100%;"> <div id="changePwdToolBarDiv"></div> <div id="changePwdFormDiv"></div> </div> <script type="text/javascript"> $(document).ready(function() { //yepnope("${ctx}/resources/js/user/changepwd.js"); Ext.ns("Ext.Authority.changepassword"); // 自定义一个命名空间 changepwd = Ext.Authority.changepassword; // 定义命名空间的别名 changepwd = { changeurl : ctx + "/user/changepwd" }; // 编辑用户Form changepwd.changePwdFormPanel = new Ext.form.FormPanel({ renderTo : 'changePwdFormDiv', border : false, defaults : { xtype : "textfield", labelWidth : 50 }, bodyStyle : 'padding:5px;background-color:transparent;', items : [ {// 原密码 id : 'old_password', name : 'old_password', inputType : "password", fieldLabel : '原密码', anchor : '99%', allowBlank : false, maxLength : 32 }, { // 新密码 id : 'new_password', name : 'new_password', inputType : "password", fieldLabel : '新密码', anchor : '99%', allowBlank : false, maxLength : 32 }, {// 确认密码 id : 'compare_password', name : 'compare_password', inputType : "password", fieldLabel : '确认密码', vtype : "password",// 自定义的验证类型 vtypeText : "两次输入的密码不一致!", confirmTo : "new_password",// 要比较的另外一个的组件的id anchor : '99%', allowBlank : false, maxLength : 32 }, {// 账户ID xtype : 'hidden', name : 'userId', value : '${user.userId}' } ] }); // 工具栏 changepwd.changePwdToolbar = new Ext.Toolbar({ renderTo : 'changePwdToolBarDiv', items : [ new Ext.Button({ text : '保存', iconCls : 'save', handler : function() { var form = changepwd.changePwdFormPanel.getForm(); if (form.isValid()) { var values = form.getValues(); // 发送请求 Share.AjaxRequest({ url : changepwd.changeurl, params : { oldPassword : Ext.MD5(values.old_password), newPassword : Ext.MD5(values.new_password), comparePassword : Ext.MD5(values.compare_password), userId : values.userId }, callback : functio