Field SenchaTouch 上的只读属性

发布于 2024-11-10 05:40:49 字数 237 浏览 4 评论 0原文

您好,我一直在寻找 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

〆凄凉。 2024-11-17 05:40:49

我遇到了同样的问题,readOnly: true 不起作用 - 我可以通过添加 afterrender 侦听器来修复它:

{
    xtype: 'textfield',
    name: 'ReferenceNumber',
    label: 'Reference',
    listeners: {
        afterrender: function(ele) {
            ele.fieldEl.dom.readOnly = true;
        }
    }
}

I ran into the same problem with readOnly: true not working - I was able to fix it by adding an afterrender listener:

{
    xtype: 'textfield',
    name: 'ReferenceNumber',
    label: 'Reference',
    listeners: {
        afterrender: function(ele) {
            ele.fieldEl.dom.readOnly = true;
        }
    }
}
悸初 2024-11-17 05:40:49

我认为你想要禁用字段,

{
    xtype: 'textfield',
    name: 'ReferenceNumber',
    **disabled**: true,
    value: '12312421',
    label: 'Reference'
}

我重载了“disabledCls”,因为标签的灰色程度超出了我的预期。

I think you want the disabled field

{
    xtype: 'textfield',
    name: 'ReferenceNumber',
    **disabled**: true,
    value: '12312421',
    label: 'Reference'
}

I overload the 'disabledCls' because it grey's out the label more than i want.

樱娆 2024-11-17 05:40:49

我可以通过设置 readOnly: nullreadOnly: undefined 来解决此问题:

{
    xtype: 'textfield',
    name: 'Website',
    label: 'Website',
    readOnly: null
}

I was able to fix this by setting readOnly: null or readOnly: undefined:

{
    xtype: 'textfield',
    name: 'Website',
    label: 'Website',
    readOnly: null
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文