开发者

unwanted dialog appears when pressing enter key

开发者 https://www.devze.com 2023-02-21 21:45 出处:网络
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?Do this:

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?


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消