日期:2014-05-16  浏览次数:20308 次

Extjs Window的使用
popWin = new Ext.Window({
				id: 'popWinId',
				title: title, 	//TagRulerRes.ADD_TAGRULER,
		        width: 600,
		        height: 380,
		        autoShow: true,
		        plain: true,
		        resizable: false,
		        shadow: false,
		        bufferResize: true,
		        modal: true,  
		        closeAction: 'close',
		        //listeners: {show: handleShow},
		        buttons: [{
		        	id: 'popWinOK',
		            text: TagRulerRes.OK,
		           	handler: submitPop 	
		        }, {
		        	id: 'popWinCANCEL',
		            text: TagRulerRes.CANCEL,
		            handler: closePop 	
		        }]
			});

?