Hi,
when using showOptionDialog method is there a possibility to have user input fields in its window body?
For example:
showOptionDialog(
getMessage("Title"),
getMessage("2 user input fields?"), // is it possible to have user input fields?
MessageType.CONFIRMATION,
new Action[]{
new DialogAction(DialogAction.Type.OK, Action.Status.PRIMARY){
public void actionPerform(Component component){
someMethod();
}
},
new DialogAction(DialogAction.Type.CANCEL, Action.Status.NORMAL)
}
);
If not, what will be a better approach to achieve this?
Thanks in advance!
Regards!