getMoneyProgramKey method

dynamic getMoneyProgramKey(
  1. dynamic label,
  2. dynamic sWidth,
  3. dynamic sHeight,
  4. dynamic type,
  5. 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
  };
}