setForm method

dynamic setForm(
  1. dynamic formName,
  2. dynamic context
)

Implementation

setForm(formName, context) {
  myLogAll('setForm');
  if (_formLists[formName] != null) {
    return;
  }
  sendRequestOne(
      gGetForm, {gFormid: formName, gEmail: _globalParam[gMyid]}, context);
}