你要创建一个网页时, 经常会发现,你知道怎样用原生的html来创建,却不知道如何使用浩如烟海的ext组件来实现。本文将介绍一些使用ext组件创建html的一些技巧。
简介
组件的渲染
首先让我们用一个简单的例子了解一下组件是如何渲染的:
/** The renderTo config option specifies a parent DOM element for
* rendering the component.
* For brevity it is not shown in the remaining examples.
*/
new Ext.Component({renderTo: 'component-demo' });