Привет! Я искал свойство readOnly для поля в secnhatouch, но не нашел его ... Может ли кто-нибудь помочь мне в этом вопросе
{ xtype: 'textfield', name: 'ReferenceNumber', readOnly:true, label: 'Reference' }
Я столкнулся с той же проблемой, когда readOnly: true не работает - я смог это исправить, добавив afterrender слушатель:
readOnly: true
afterrender
{ xtype: 'textfield', name: 'ReferenceNumber', label: 'Reference', listeners: { afterrender: function(ele) { ele.fieldEl.dom.readOnly = true; } } }
Я думаю, вам нужно отключенное поле
{ xtype: 'textfield', name: 'ReferenceNumber', **disabled**: true, value: '12312421', label: 'Reference' }
Я перегружаю 'disabledCls', потому что он выделяет метку больше, чем я хочу.
Мне удалось это исправить, установив readOnly: null или readOnly: undefined:
readOnly: null
readOnly: undefined
{ xtype: 'textfield', name: 'Website', label: 'Website', readOnly: null }