ajax « wicket « Java Enterprise Q&A





1. (Wicket) Change visibility during ajax response    stackoverflow.com

I have a AjaxPagingNavigator. Basically on a certain condition, the list which the AjaxPagingNavigator pages is reloaded. When this happens I only want to render the navigator when the list contains ...

2. Wicket and a rich ajax website: easiest way to do it?    stackoverflow.com

I want to use Wicket to build an application, but I have some designers that would like to write/maintain the javascript, and they basically expect 1 JS-segment per page, and a ...

3. Wicket AJAX + OnComponentTag    stackoverflow.com

HI guys, I wanted to add an AJAX Event to my Homepage, but it doesn't work! I figured out, that if I delete the onComponentTag function it works well. I have no ...

4. Wicket: reload AjaxLazyLoadPanel automatically    stackoverflow.com

I have a page with a form. Using the data from the form I get information from a BBDD and I displayed in a panel using Ajax. Now I was trying ...

5. Wicket + jsTree, links generation in ajax response    stackoverflow.com

I'm using jsTree jQuery plugin for drawing a tree. When user clicks a node, an ajax request containing node's id is send to server. In my response I generating such piece of ...

6. How to make clickable table column header in Wicket    stackoverflow.com

I am using AjaxFallbackDefaultDataTable for table creation. For sortable columns, currently wicket creates ajax link under each column name to make it as clickable. But I want to make the complete column header as ...

7. Unable to get value of dynamically enabled text field    stackoverflow.com

I am using a dropdown list in Wicket. After selecting an option, a new text field becomes enabled. I am not able to get the value of the new text field. I ...

8. How to set custom HTTP response header in Wicket's Ajax responses?    stackoverflow.com

I need to set a custom HTTP header to all responses from my Wicket application. I'm currently doing it in a custom RequestCycle, where getWebResponse() is overridden along these lines:

@Override
public WebResponse ...

9. please advice me some good tutorial on wicket ajax integration. i am working on wicket 1.4    stackoverflow.com

please provide some example on wicket ajax .





10. Wicket AjaxLink question    stackoverflow.com

I have created a new AjaxLink in my .java file

add(new AjaxLink("link"){                     ...

11. Why does running multiple Wicket applications cause AJAX conflicts?    stackoverflow.com

When I open two Wicket web applications in the same browser, it seems there are AJAX conflicts as I see a full page refresh in place of a partial refresh. This ...

12. How to add onclick selection to rows of wicket TreeTable?    stackoverflow.com

I'm working with a TreeTable (from wicket-extensions) and I'd like to be able to select a row by clicking anywhere within it instead of the usual behavior of clicking the link ...

13. Wicket and complex Ajax scenarios    stackoverflow.com

When a screen has multiple interacting Ajax controls and you want to control the visibility of components to react to these controls (so that you only display what makes sense in ...

14. Wicket CheckBoxMultipleChoice doesn't update    stackoverflow.com

My wicket panel is requiring at least two clicks to update either of the CheckBoxMulitpleChoice components using the onSubmit method of my buttons. How can I get these components to ...

15. Wicket ListMultipleChoice and ajax    stackoverflow.com

I have a question about the ListMultipleChoice, is there anyway to get the selected items before the submit by an ajax link for example because i wouldn't refresh my page every ...

16. Apache Wicket and Ajax PUSH    stackoverflow.com

do you know some "cool" java library for Apache Wicket, which be able to do Ajax PUSH? I watched for some solution on the Wicket pages, but it looks like there ...





17. IndicatingAjaxButton works only once    stackoverflow.com

I have derived a class from IndicatingAjaxButton (which is the button to a form). But the IAjaxIndicatorAware does only work once, i.e. if the validation of the form fails I print ...

18. WICKET : Ajax is not working in my wicket application    stackoverflow.com

I have used wicket 1.4.18. Ajax is not working after filling in the textfield. Java code:

   Form form = new Form("form");    
   TextField<String> text=new TextField<String>("manualUrl",new ...