showTableOne method

dynamic showTableOne(
  1. dynamic tableid,
  2. dynamic context,
  3. dynamic title,
  4. dynamic transpass,
  5. dynamic backcolor,
  6. dynamic other,
  7. dynamic where,
  8. dynamic futureSeq,
)

Implementation

showTableOne(dynamic tableid, context, title, transpass, backcolor, other,
    where, futureSeq) {
  myLogAll('showTable');
  if (_tableList[tableid] == null) {
    retrieveTableFromDB(tableid, where, context, futureSeq);
    return getEmptyWidget();
  }
  dynamic param = {gTableID: tableid, gOther: other, gWhere: where};
  if (isStackExists(param)) {
    return getEmptyWidget();
  }
  Widget w =
      showMyDetail(getTableBodyParam(param, context), context, backcolor);
  return w;

  /*if (strSubexists(transpass, gPopupnew)) {
    Map param = {
      gTableID: tableid,
      gType: gTable,
      gLabel: title,
      gTranspass: transpass,
      gWhere: where
    };
    //trigger add new
    newForm(param, context);
    showTableForm(param, context, backcolor);
  }*/
}