Hi,
Create a EDT name it Gender then in properties enumType : //select the enum name
Use the below code and enjoy.
static voidSimple_Dialog (Args _args)
{
dialog dialog;
dialogGroup dialogGroup;
dialogField dialogField;
dialog = newDialog(“Simple Dialog”);
dialogField = dialog.addField(extendedTypeStr(Gender));
if (dialog.run())
{
print dialogField.value();
pause;
}
}
TRY Below
static void CreateRadio(Args _args)
{
Dialog dialog = new Dialog();
DialogField dialogField;
FormRadioControl formRadioControl;
;
dialogField = dialog.addField(EnumStr(Sex));
//instead of Sex give your enum name
formRadioControl = dialogField.control();
formRadioControl.helpText(“Sample Dialog”);
dialog.run();
}
3 Responses
This comment has been removed by a blog administrator.
This comment has been removed by a blog administrator.
Informative blog. Thanks for sharing.
DevOps Training
DevOps Online Training