Forum /
Sencha Touch 2.x Forums /
Sencha Touch 2.x: Q&A /
Unanswered: inputCls NOT APPLIED properly in ANDROID
Unanswered: inputCls NOT APPLIED properly in ANDROID
CSS
--------------------------
.txtblack { font-weight:bold !important;
color: #000 !important;}
.inputcolor{
color:#0070C0;
}
-------------------------------------------------
JS
-------------------------------------------------
Ext.define('Fxtrade.view.Withdrawl',{
............
.....................
},
{
xtype : 'numberfield',
label : 'Some label',
id : 'withdrawAmtId',
labelCls:'inputcolor',
inputCls: 'txtblack',
listeners : {
painted: setdefault,
}
},
});
function setdefault(){
Ext.getCmp('withdrawAmtId').setValue(0);
}
--------------------------------------------------
The code loads default value zero( 0 ) in withdrawAmtId field, and looks ok in iphone (labelCls and inputCls are applied).
Problem:
when the same page is loaded in android the labelCls is applied but the inputCls class is not applied properly. i.e., .txtblack { ...; color: #000 !important;} is not applied, text looks gray in color.
Please help me ASAP,
Sencha - Senior Forum Manager
This sounds like browser issue. You need to use a remote debugger to inspect the <input> element.
Sencha is used by over two million developers. Join the community, wherever you’d like that community to be
or Join Us