Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我收到一个 Ext.form.Panel,里面有 2 个项目 Ext.form.field.Text。然后我添加了第三个对象,一个 Ext.container.Container 并且我想将以前的项目放入新容器中,所以我获取字段并添加一个监听器,如下所示
listeners:{ beforerender:function(){ Ext.getCmp('myContainer').add(this) ; } }
有没有更简单或最好的方法来做到这一点?
为什么要等到组件即将渲染时才将其放入容器中?为什么不首先将其放入容器中。也许用更多细节更新你的 OP。