browser « wicket « Java Enterprise Q&A





1. Java/Wicket - How to stop browsers from caching pages?    stackoverflow.com

I have a Java/Wicket page that generates a JNLP file that launches my company's software. This class will optionally take some url parameters and embed them as arguments in the JNLP. ...

2. Wicket JavaScript browser compatibility    stackoverflow.com

I am new to Wicket, I have seen that it has Ajax related components. When it generates JavaScript at the client side, is this JavaScript code cross-browser compatible?

3. Wicket: Get URL from browser    stackoverflow.com

I need to retrieve URL from current Web page opened in Firefox by using Wicket. Can somebody tell me how to do that? Thanks!

4. Wicket: ListView not updated when using multiple browser windows in simple CRUD    stackoverflow.com

Ok, here is my controller using Wicket 1.5M2:

public class Users extends WebPage {

private static final List<User> users = Collections.synchronizedList(new ArrayList<User>());

public Users() {

    final UserForm userForm = new UserForm("userForm");
 ...

5. Redirect on login page after log out on browser's back button on-click    stackoverflow.com

Any good website like any one of the various services provided by google has a feature that on browser's back button on click it will redirect you to the ...

6. How can I clear the PropertyModel's value when I hit back on my browser    stackoverflow.com

I have a DropDownChoice with a PropertyModel in my page and I have some other actions which take me to different pages. Now when I click on the Back Arrow on ...

7. Internet Explorer Browser Issue: Browser not submitting POST data with Ajax requests, server/client hangs    stackoverflow.com

I am experiencing an issue where the browser is not submitting POST data from an ajax request and so the server waits for it and hangs. The browser, mostly IE8 ...