页面效果:
页面代码:
<%@ page contentType="text/html; charset=utf-8"%>
<%
String panelid = request.getParameter("panelid");
String data[] = request.getParameterValues("ids");
%>
<script type="text/javascript">
Ext.onReady(function(){
var id = '<%=panelid%>';
var panel = Ext.getCmp(id);
var win = panel.findParentByType('window');
var buttons = [{
text : '激活',
iconCls : 'icon-sys-confirm',
handler : function(){
panel.submit();
}
},{
text : '取消',
iconCls : 'icon-sys-cancel',
handler : function(){
win.close();
}
}];
var formpanel = new Ext.form.FormPanel({
autoScroll : true,
border : false,
buttons : buttons,
fileUpload : true,
bodyStyle : "padding:10px;padding-right:20px",
defaults :