enterMoney method
dynamic
enterMoney(
- dynamic context
Implementation
enterMoney(context) {
myLogAll('enterMoney');
var name = _mFocusNode[gName];
var item = _mFocusNode[gCol];
var id = _mFocusNode[gId];
var label = toMoney(getValue(name, item, id)[gValue] ?? '');
if (isSS()) {
_screenLists[gMoney] = {
10: {
gItem: '{"$gType":"$gLabel","$gValue":"$label","$gFontSize":48.0}'
},
20: {gItem: '{"$gType":"$gMoney"}'}
};
} else {
_screenLists[gMoney] = {
10: {
gItem: {gType: gLabel, gValue: label, gFontSize: '24.0'}
},
/*20: {
gItem: {gType: gMoney}
}*/
};
}
showMyDetail(_screenLists[gMoney], context, _defaultBackGroundColor);
}