Hi!
I have to create job which needs inputs from dialog (TransDateTime and AreaId)
The part with date is finished:
static void test(Args _args)
{
Dialog dialog;
DialogField fieldLastSynchDate, fieldCompanyId;
dialog = new Dialog("My Dialog");
dialog.addText("Choose synchronization date:");
fieldLastSynchDate = dialog.addField(extendedTypeStr(TransDateTime));
dialog.run();
if (dialog.closedOk())
{
//ACTION
}
else return;
}
How to create ComboBox or something else where i could select existing companies ??
Thank you in advance :)
*This post is locked for comments
I have the same question (0)