How to make the dialogue of elments collapsible?
Is there a way to make DialogGroup elements legible via X ++?
I looked at MSDN and went through the class, but I don't seem to find anything useful.
Another developer added two groups to the dialog that appears when creating a payment offer (CustVendPaymJournal_Vend Class), and the OK and Cancel buttons no longer appear at lower resolutions (1024x768).
My approach is to make some of the groups collapsible so that the dialog box displays buttons like this.
source to share
I found him.
After looking at MSDN for longer than I would like, I found a solution:
After creating the DialogGroup
dialogGroupProposalType = dialog.addGroup("@SYS88520");
There is a method available frameOptionButton()
that takes an ennumeration FormFrameOptionButton as a parameter.
dialogGroupProposalType.frameOptionButton(FormFrameOptionButton::Hide);
http://msdn.microsoft.com/en-us/library/aa845161(v=ax.50).aspx#F
http://msdn.microsoft.com/en-us/library/aa627673(v=ax.50).aspx
http://msdn.microsoft.com/en-us/library/aa627673(v=ax.50).aspx
http://msdn.microsoft.com/en-us/library/aa592526(v=ax.50).aspx
source to share