Dialog _Dialog;
DialogField _Field;
_Dialog = new Dialog("Select Worker");
_Dialog.addText("Worker");
_Field = _Dialog.addField(extendedTypeStr(HcmWorkerRecId));
_Field.label("Worker");
_Dialog.run();
if (_Dialog.closedOk())
{
info(_Field.value());
}
No comments:
Post a Comment