Hi,
I have tried to make Yes-No dialog to confirm user's action.
I have tried several combinations, but
always the Yes-part is behind Options menu,
I don't want any menu, just two command s
that can be pressed without browsing.
No-button is displayed correctly on the right side of the screen.
I'm using 6600.
Alert question = new Alert("Continue?");
question.setType(AlertType.WARNING);
//Command cmdYes = new Command("Yes",Command.OK,1);
Command cmdNo = new Command("No",Command.CANCEL,1);

Reply With Quote

