button « wicket « Java Enterprise Q&A





1. Simulate back/forward/refresh button in unit test with Wicket    stackoverflow.com

I'd like to unit test (jUnit 4) the behavior of my pages when the browser's back button (or forward or refresh) is clicked. Can I somehow simulate the browser's back/forward/refresh buttons in ...

2. Wicket: Showing the button during Ajax response    stackoverflow.com

I have the problem related to showing the button on the page. There are two buttons called “Upload� and “Save�. On the beginning “Upload� button is visible, while Save button has ...

3. Wicket - need FilterForm ajax events for GoAndClear button events    stackoverflow.com

I've added a FilterForm with GoAndClear buttons to an AjaxFallbackDefaultDataTable. The filtering is working fine except for refreshing my table. I have a dropdown that changes the number of ...

4. Change className for a component when a button is disabled using wicket?    stackoverflow.com

For example:

<span class="button4">
   <button wicket:id="saveButton" type="submit">
     <wicket:message key="modalArchiveAccount.button.save" />
   </button>
</span> 
From java code I set this button to be enabled or disabled, the ...

5. How do I implement back button support on a form in Wicket?    stackoverflow.com

I have a search page with a tabbed panel, with a form within each tab (see code below), that when submitted searches the database for hits. However, back button support on ...

6. How to disable / change style of wicket button link in onClick()    stackoverflow.com

In a Wicket app, I have a bunch of <button> elements to which I'm attacking a Link component. Now in the onClick() method of the component I want to disable or ...

7. LoadableDetachableModel and an Ajax button (Wicket)    stackoverflow.com

I have a problem similar to the one described by LutherBaker here, i.e. the load method of LoadableDetachableModel is called before the onSubmit() method of the Ajax button. Is ...

8. Wicket, Dynamic table containing listview should be displayed on submit of a button    stackoverflow.com

I need a Wicket example for displaying a table on click on submit button, the table should consist of a ListView. I have text field in which some data is to be ...

9. hide and show ajax button in wicket    stackoverflow.com

I have scenario that onsubmit of modalwindow I have to show two ajax button on page. .I am adding form in wchich added two buttonsbut set visibility to false. But not able ...