我需要渲染一些嵌套在div中的输入框和标签。问题是html显示而不是输入。实现这一目标的最佳方法是什么?
这可能会有无限量的嵌套div和输入框。
{
xType: 'panel',
autoEl:[
{
tag: 'div', cls:'rule', children:
[
{
tag: 'div', cls:'condition', children:
[
{tag: 'span', html:'Permit'},
{
xtype: 'textfield',
name: 'inputname',
value: 'this is my test',
}
]
}
]
}
],
}
答案 0 :(得分:0)
为什么不使用表单并为其添加输入字段?您可以使用表单中面板可用的任何布局。在运行中向表单添加字段的效果相当不错。您还可以使用控制器将函数绑定到表单字段。