Support for Segmented Entry controls on dialogs
Describes the code pattern to add Segmented Entry controls to dialogs.
The process to add Segmented Entry controls to dialogs has changed. This code is an example from Dynamics AX 2012:
DialogField dialogFeeLedgerDimension;
LedgerDimensionAccountController ledgerDimensionAccountController;
dialogFeeLedgerDimension = dialog.addFieldValue(extendedtypestr(LedgerDimensionAccount),feeLedgerDimension,"@SYS119703");
ledgerDimensionAccountController = LedgerDimensionAccountController::constructForDialog(dialogFeeLedgerDimension);
In the current release, this code would be converted to:
DialogField dialogFeeLedgerDimension;
dialogFeeLedgerDimension = SegmentedEntryControlBuild::addToDialog(
dialog,
classstr(LedgerDimensionAccountController),
extendedTypeStr(LedgerDimensionAccount),
"@SYS119703",
feeLedgerDimension);
For the second parameter, choose the class that satisfies the requirements for your dialog. The options are:
- LedgerDimensionAccountController
- LedgerDimensionDefaultAccountController
- DimensionDynamicAccountController
- BudgetLedgerDimensionController
- BudgetPlanningLedgerDimensionController
This scenario is a simple dialog scenario around Segmented Entry. More advanced scenarios include:
- Binding the dynamic account type.
- Company selection support.
- Account structure selection support.
Additional resources
Design-time metadata for Segmented Entry controls
Parm methods for Segmented Entry controls
Migrate Segmented Entry controls
Migration guidance for Segmented Entry controls
Help us understand
We want to learn more about how people use Microsoft's custom Help toolkit. Take the survey (in English) and help us understand: https://forms.office.com/r/A4cUJgjkD1.
Feedback
Submit and view feedback for