Hi, all
I would like to hide some values of enum in comboBox control, called enumControl. I've written the following code inside init method before super.
Set enumSet = new Set(Types::Enum);
enumSet.add(MyEnum::Value1);
enumSet.add(MyEnum::Value2);
sysFormEnumComboBox = SysFormEnumComboBox::newParameters(element,
element.controlId(formControlStr(MyForm, enumControl)),
enumNum(MyEnum),
enumSet);
But it does not works for me well. There are some redundant values.
Do you have any ideas what I can miss?
Thanks in advance.
*This post is locked for comments