0

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?

Michael Donohue
  • 11,776
  • 5
  • 31
  • 44
Jisson
  • 3,566
  • 8
  • 38
  • 71

1 Answers1

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