0
votes
1answer
110 views

Wicket - Move objects from one dataview to another

I am using Apache Wicket and... I have a java class: task. There are active and finished tasks. I have a sortable dataView for active tasks: final DataView<LongRunningTask> dataViewActive = ...
0
votes
2answers
1k views

Java Wicket AJAX refresh paginated DataView

I have a page that has a list of Hibernate entities that is loaded dynamically on display of the page. The list is used to create a DataView, which is used to display a paginated list of the entries ...
0
votes
1answer
464 views

Using DataView as a dynamic search result table in Wicket 1.4

I'm fairly new to Wicket but I've already run into a very strange problem. I'm creating a page with a pretty basic search form and a results table (a DataView) which is initially empty. When the user ...
0
votes
1answer
579 views

How to invoke a Javascript method after Wicket Dataview is rendered with AjaxPagingNavigator?

I am using Wicket's DataView with AjaxPagingNavigator. My use case is very similar to How can I update a Wicket DataView with AJAX? withe the caveat that I need to do post processing after the ...
0
votes
2answers
675 views

How can I make a Wicket form save radio button state?

I want to have a repeater like DataView or ListView. The first column of each row (named User ID) should be read from a List, and for each user ID, the program should dynamically create three radio ...
0
votes
1answer
2k views

How can I update a Wicket DataView with AJAX?

I need to AJAXfully filter by users list of PsDoctrans which is shown in a Wicket DataView. final TextField txtName= new TextField("user"); final PSDocDP dp = new PSDocDP("username"); ...