i am working on GWT cookies. I was checking whether the cookie is enabled or not and if not enabled to show gwt popup for which i have written following code:
if(Cookies.isCookieEnabled())
.....
else
Window.alert("please enable cookies");
but when i disable the cookies in browser and try to run the code nothing is appearing? please can some one suggest me the possible cause for this issue and the solution to fix this?
Thanks.