标签:
在ExtJS中实例化类可以使用全类名或者别名以及备用名
// alias 别名 var window = Ext.create(‘widget.window‘, { width: 600, height: 800, ... }); // alternate name 备用名 var window = Ext.create(‘Ext.Window‘, { width: 600, height: 800, ... }); // full class name 完整的类名 var window = Ext.create(‘Ext.window.Window‘, { width: 600, height: 800, ... }); //单个对象与xclass属性: var window = Ext.create({ xclass: ‘Ext.window.Window‘, // 任何有效的‘name‘ (以上) width: 600, height: 800, ... });
【ExtJS】使用Ext.create( [String name], [Object... args] ) : Object实例化类
标签:
原文地址:http://www.cnblogs.com/tabchanj/p/5872535.html