Skip to main content
Post a question

Notifications

Community site session details

Community site session details

Session Id : Ul97fVZS6SWU5XYknqylCe
Finance | Project Operations, Human Resources, ...
Suggested answer

SysOperation framework: Build Dialog with Groups and fields

Like (0) ShareShare
ReportReport
Posted on 8 Jan 2021 12:33:09 by 6,449

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?

58422.png

  • Suggested answer
    Sergei Minozhenko Profile Picture
    23,091 on 08 Jan 2021 at 14:31:10
    RE: SysOperation framework: Build Dialog with Groups and fields

    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;
        }
    }
    

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Jonas ”Jones” Melgaard – Community Spotlight

We are honored to recognize Jonas "Jones" Melgaard as our April 2025…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 293,342 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 232,445 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,158 Moderator

Leaderboard

Product updates

Dynamics 365 release plans