Extjs4.0一些常见入门学习范例带注释详解

时间:2016-04-28 06:14:13
【文件属性】:

文件名称:Extjs4.0一些常见入门学习范例带注释详解

文件大小:14KB

文件格式:DOCX

更新时间:2016-04-28 06:14:13

Extjs

Ext.onReady(function() { /** * 1.创建一个window窗体 */ Ext.define('MyApp.MyWindow', { extend : 'Ext.Window', title : 'welcome!', initComponent : function() { this.items = [{ xtype : 'textfield', name : 'tfName', fieldLabel : 'Enter your name' }], this.callParent(arguments); } }); var win = Ext.create('MyApp.MyWindow'); win.show();


网友评论

  • 很好看得明白