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'
}
link|improve this question

73% accept rate
feedback

2 Answers

up vote 1 down vote accepted

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.

link|improve this answer
i did not want to go there but hey thanks anyway .... – Necronet May 31 '11 at 3:30
actually you were right when the fields gets rendered on mobile device the afterrender listener does not work... – Necronet Jul 15 '11 at 18:46
feedback

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;
        }
    }
}
link|improve this answer
definitly the answer i was looking for – Necronet Jun 1 '11 at 21:32
@Nick. When the fields gets rendered on mobile device the afterrender listener does not work..How you fix this if you need anytime again after screen is rendered? – Nilanchala Oct 28 '11 at 9:02
you're Braniac! – Umair Ashraf Nov 19 '11 at 17:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.