Extjs4.0常见入门学习范例详解
Ext.onReady(function() { /* * 1.创建window窗体/ Ext.define('MyApp.MyWindow', { extend : 'Ext.Window', title : '欢迎!', initComponent : function() { this.items = [{ xtype : 'textfield', name : 'tfName', fieldLabel : '输入您的名字' }], this.callParent(arguments); } }); var win = Ext.create('MyApp.MyWindow'); win.show();
14.48KB
文件大小:
评论区