showTableOne method
dynamic
showTableOne(
- dynamic tableid,
- dynamic context,
- dynamic title,
- dynamic transpass,
- dynamic backcolor,
- dynamic other,
- dynamic where,
- 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);
}*/
}