getMoneyProgramKey method
dynamic
getMoneyProgramKey(
- dynamic label,
- dynamic sWidth,
- dynamic sHeight,
- dynamic type,
- dynamic col,
Implementation
getMoneyProgramKey(label, sWidth, sHeight, type, col) {
myLogAll('getMoneyProgramKey');
var nextAction = '';
if (type == gBackContext) {
nextAction = '$gTip$gReset';
}
return {
gLabel: label,
gType: gLocalAction,
gActionid: gSetValueFocus,
gInputType: gMoney,
gWidth: sWidth,
gHeight: sHeight,
gAddnew: type, //append, ...
'$gAfter$gBackContext': nextAction,
gCol: col
};
}