gpt4 book ai didi

sencha-touch - 如何获取 FieldSet 的元素

转载 作者:行者123 更新时间:2023-12-04 03:06:38 26 4
gpt4 key购买 nike

我有一个 FieldSet :

Ext.define('admin.view.BuzzEditForm', {
extend: 'Ext.form.Panel',
requires: ['Ext.form.FieldSet','Ext.Img'],
id: 'editorPanel',
xtype: 'buzzEditForm',
config: {
/* modal: true,
hideOnMaskTap: false,
centered: true,
width: 500,
scrollable: false,*/
items: [{
xtype: 'fieldset',
items: [
{
xtype: 'textfield',
name: 'keyword',
label: 'Mots clés'
},
{
xtype: 'textfield',
name: 'title',
label: 'Titre'
},
{
id: 'editorPanelvisual',
xtype: 'field',
label: 'Visuel actuel',
component:
{
xtype: 'container',
layout: 'hbox',
items: [
{
id: 'buzzImageField',
flex: 1,
xtype: 'image',
src: 'http://pierre.chachatelier.fr/programmation/images/mozodojo-original-image.jpg',
height: 200
},
{
id: 'buzzChooseImageField',
xtype: 'button',
iconCls: 'arrow_right',
iconMask: true,
ui: 'action',
action: 'chooseBuzzImage'
}

]
}

},
{
xtype: 'textfield',
name: 'visual',
label: 'Visuel'
}
]
}]
}
});

我可以使用 Ext.getCmp('#editorPanel') 获取我的 formPanel,但是如何使用它的名称获取字段?

最佳答案

只需使用Ext.ComponentQuery,例如:

Ext.ComponentQuery.query('textfield[name="keyword"]')

更多详情,请查看:http://docs.sencha.com/touch/2-0/#!/api/Ext.ComponentQuery

关于sencha-touch - 如何获取 FieldSet 的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10603594/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com