Announcements
Hello,
I could not find any sorce / example of how to build a dialog with Groups and fields in those groups.
I want to achive something similar to screenshot below. As I checked the dialog below is separate form and then "Dialog" is initialized with it in the RunBase class.
So, How can I achieve the same 'design' by UiBuilder class? I mean, how can I have "Identification", "Posting", Reason", "Selection criteria" fieldgroups and how to assign fields to those fieldgroups?
Hi Johnny Almeida,
It's not necessary to use UI builder class. You can use attributes SysOperationGroupAttribute and SysOperationGroupMemberAttribute in contract class
[ DataContractAttribute, SysOperationGroupAttribute('Group1', "Label for group1", '1'), SysOperationGroupAttribute('Group2', "Label for group2", '2') ] public class MyContract { int var1; int var2; [ DataMemberAttribute('var1'), SysOperationGroupMemberAttribute('Group1'), SysOperationDisplayOrderAttribute('1') ] public int parmVar1(int _var1 = var1) { var1 = _var1; return var1; } [ DataMemberAttribute('var2'), SysOperationGroupMemberAttribute('Group2'), SysOperationDisplayOrderAttribute('1') ] public int parmVar2(int _var2 = var2) { var2 = _var2; return var2; } }
André Arnaud de Cal...
293,342
Super User 2025 Season 1
Martin Dráb
232,445
Most Valuable Professional
nmaenpaa
101,158
Moderator