I am developing an online radio project. In the middle of hearing music, if the user presses the enter key, sometimes a dialog is displayed. What is the remedy for this?
Asked
Active
Viewed 159 times
0
-
1what kind of dialog, any text is mentioned on it or the clock dialog appears?? – Swati Apr 01 '11 at 09:38
-
A dialog Box "Changes Made" and three buttons Save,Discard,Cancel – Jisson Apr 18 '11 at 08:59
1 Answers
2
Do this:
protected void onSavePrompt()
{
return true;
}
protected void onClose()
{
return true;
}
add the code in ur screen where the issue arises. One method is for closing and one for saving.
depending on your requirement u can add both or any Hope this helps.

Swati
- 2,870
- 7
- 45
- 87