Question

Is it possible to rename dialog box buttons?
For example on "okCancel" can I rename the "ok" button as "continue"?

If not please guide me how can I create my own dialog box?

Thanks ahead.

Était-ce utile?

La solution

A button has a "Text" property. You can set that property or do so by code:

okButton.text("Continue");

The Box::okCancel uses the DialogBox class which is a kernel class and cannot be changed. The yesNoAxaptaForm method on the other hand uses an AX form, so you can roll on your own. That said it seems to gain little value.

Also consider using the RunBase framework with a form, as demonstrated in the Tutorial_RunbaseForm class.

Autres conseils

You can create a new method in class Dialog overwriting the control #okButton and call this method in your new dialog. When Dialog class is create in the method new call the method initButtons, which can be overridden.

For example:

FormBuildButtonGroupControl     buttonGroup;
formBuildCommandButtonControl   okButton;
;
buttonGroup = dialogForm.buildDesign().control(#bottomGroup);
if (buttonGroup)
{
    okButton = dialogForm.buildDesign().control(#okButton);
    okButton.text("test");
}
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top