When fields are disabled the data in the field is not displayed in Chrome 16.0.912.63 m for windows. This can be seen in the Kitchen Sink demo on your website. Sencha Touch 2 PR 3.
Printable View
When fields are disabled the data in the field is not displayed in Chrome 16.0.912.63 m for windows. This can be seen in the Kitchen Sink demo on your website. Sencha Touch 2 PR 3.
I see the value but the text's color is white and can hardly see it.
This can be fixed via CSS:Code:var cnt = Ext.create('Ext.Container', {
fullscreen : true,
items : [
{
xtype : 'textfield',
label : 'text',
disabled : true,
value : 'See me?'
}
]
});
Code:.x-item-disabled input,
.x-item-disabled .x-spinner-body,
.x-item-disabled select,
.x-item-disabled textarea {
color: #ff0000;
}
-webkit-text-fill-color to the rescue.