Re: isJavaEnabled does not work

2012-04-02 Thread Martin Grigorov
Wicket extracts this information just once - when you see the BrowserInfoPage, the one with the message If you see this, it means that both javascript and meta-refresh are not support by your browser configuration After that this info is cached at the server side in the Session. You can use Ajax

Re: isJavaEnabled does not work

2012-04-01 Thread Andre Schütz
Hello, thank you for the information. I have two further questions that are of importance for me. (1) I have Javascript enabled in Opera and Firefox. I tested the two following client information: Method - result in my logs isJavaEnabled - false isCookiesEnabled - true (a) I disabled

Re: isJavaEnabled does not work

2012-04-01 Thread Andre Schütz
Hello, thank you for the information. I have two further questions that are of importance for me. (1) I have Javascript enabled in Opera and Firefox. I tested the two following client information: Method - result in my logs isJavaEnabled - false isCookiesEnabled - true (a) I disabled

isJavaEnabled does not work

2012-03-31 Thread Andre Schütz
Hello, I use wicket 1.5.4 or 1.5.5 with Opera and Firefox. I checked with the following lines: Application: - protected void init() { super.init(); getRequestCycleSettings().setGatherExtendedBrowserInfo(true); ... } MyWebPage: - WebSession session = WebSession.get();

Re: isJavaEnabled does not work

2012-03-31 Thread Martin Grigorov
The method says Java, not JavaScript. The page that extracts the extra info uses JavaScript to do that, so it is enabled. 2012/3/31 Andre Schütz wic...@faustas.de: Hello, I use wicket 1.5.4 or 1.5.5 with Opera and Firefox. I checked with the following lines: Application: -