Extjs 에서 보고서 내 보 내기, 오류 보고.

1291 단어 ExtJsExtJS
오류 가 발생 한 이 유 는 내 보 내기 단추 제출 에 필요 한 FormPanel 이 렌 더 링 되 지 않 았 기 때 문 입 니 다. 쓸 때 이렇게 쓰 면 됩 니 다.
	var queryPanel = new Ext.form.FormPanel({
		fileUpload: true,
		renderTo: Ext.getBody(),  //
		id: 'queryPanel',
   		items: []
		
	});
	var btn_export = new Ext.Button({
		text : '  ',
		iconCls : 'down',
		renderTo: Ext.getBody(),  
		handler: function() {
			queryPanel.getForm().submit({
				url : exportURL
			});
		}
	});
	//url = url + conditions;	
	/**    */
	var showWindow = function(){
		if( window_add_control != null){
			window_add_control.close();
		}
		window_add_control = new Ext.Window({
			id:'addControl',
			title:'    ',
			width:900,
			height:480,
			resizable : false,
			autoHeight : true,
			tbar : [btn_export],
			modal : true,
			closeAction : 'close',
			items:[{
				xtype : 'panel',
				height : 480,		//               , iframe    height    
				width : '100%',
				target : "middle",
				bodyStyle : 'background-color:#FFFFFF',
				html : '

좋은 웹페이지 즐겨찾기