setTableWhere method

dynamic setTableWhere(
  1. dynamic param,
  2. dynamic context
)

Implementation

setTableWhere(param, context) {
  dynamic tableInfo = _tableList[param[gTableID]];
  dynamic where = param[gValue];
  if (where == 'showDateChoiceBetween') {
    showDataChoiceBetween(param, context);
    return;
  }
  tableInfo[gWhere] = where;
  tableInfo[gRowCurrent] = 0;
  backContextMore(1, context);
}