Field SenchaTouch 上的只读属性
您好,我一直在寻找 secnhatouch 中字段的只读属性,但没有找到它...有人可以在这件事上帮助我吗
{
xtype: 'textfield',
name: 'ReferenceNumber',
readOnly:true,
label: 'Reference'
}
Hi i've been looking for the readOnly property for field in secnhatouch but haven't found it... can some one assist me on this matter
{
xtype: 'textfield',
name: 'ReferenceNumber',
readOnly:true,
label: 'Reference'
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我遇到了同样的问题,
readOnly: true
不起作用 - 我可以通过添加afterrender
侦听器来修复它:I ran into the same problem with
readOnly: true
not working - I was able to fix it by adding anafterrender
listener:我认为你想要禁用字段,
我重载了“disabledCls”,因为标签的灰色程度超出了我的预期。
I think you want the disabled field
I overload the 'disabledCls' because it grey's out the label more than i want.
我可以通过设置
readOnly: null
或readOnly: undefined
来解决此问题:I was able to fix this by setting
readOnly: null
orreadOnly: undefined
: