ExtJs Window示例


ExtJs Window示例_第1张图片


Ext.onReady(function() {
			//Ext.MessageBox.alert('消息', 'ExtJS正式出场!');

			var win = new Ext.Window({
						title : "hello",
						width : 300,
						height : 200,
						html : '<h1>Hello, ExtJs!</h1>'
					});
			win.show();
		});



你可能感兴趣的:(ExtJs Window示例)