How to update the label and helptext of the RunBase OK and Cancel buttons

The code needs to be put after the super() call in the putToDialog() method.

protected void putToDialog()

{

FormBuildCommandButtonControl commandButton;

;

super();

commandButton = dialog.dialogForm().control("OkButton");

commandButton.text("Done");

}
 

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.