09-19-2009 10:58 PM
Hi,
I am programming with SDK 4.7 and I am developing application that
is currently using Storm simulator.
When I click on the button and open the new screen I get this dialog box every time:


How do I disable this dialog?
Thank you in advance.
Solved! Go to Solution.
09-20-2009 12:27 AM
You are not consuming the navigation Click.
If it is a ButtonField causing the issue, you can rectify by specifying the CONSUME_CLICK style in your constructor.
For other fields types, the issue varies. Are you overriding navigationClick() ? If so, make sure you are returning 'true' when you consume a click event. Otherwise, the system will pick up the event qand perform the default action, which is this menu.
10-22-2009 03:14 AM
Hi RexDoug,
I overwritten the navigationClickl() and return true to disable the system menu. but it is not working for me. any more suggestions??
I used MainScreen.NO_SYSTEM_MENUITEMS as a paremeter to the constructor, so am not getting only FullMenu option in the popup. can you suggest me how to fix this...?