Questions tagged [wicketstuff]

Wicket Stuff is a collection of open source projects for the Apache Wicket web framework created and maintained by the Wicket community.

Wicket Stuff is a collection of open source projects for the Apache Wicket web framework created and maintained by the Apache Wicket community. It includes components for Google Chart API, Google App Engine, JasperReports, jQuery, Prototype, Apache Shiro security, YUI, Dojo Toolkit and much, much more.

Resources

78 questions
0
votes
0 answers

How to setup Cometd in Spring Boot with Jetty?

CometdPushService.get() throws NullPointerException org.wicketstuff wicketstuff-push-cometd 7.0.0-M5 TimerPushService.get() works…
F.O.O
  • 4,730
  • 4
  • 24
  • 34
0
votes
0 answers

BayeuxServer Configuraion for Wicket Stuff Cometd?

CometdPushService.get() throws NullPointerException org.wicketstuff wicketstuff-push-cometd 7.0.0-M5 TimerPushService.get() works…
F.O.O
  • 4,730
  • 4
  • 24
  • 34
0
votes
1 answer

How do I proceed with creating a panel which can search a page in wicket and redirect to the same

I am trying to do the following: I already have a menu with several drop downs in wicket right now. However the number of entries have become very large in the drop downs, one has to remember headers under which a particular page exists. I would…
deb
  • 631
  • 1
  • 5
  • 15
0
votes
1 answer

checkbox not getting unchecked in wicket

I have a checkgroup and on selecting a checkbox in the group I want to get the number of selected/checked check boxes. By the below code, I am able to get the selected number of checkboxes but on unchecking or removing the selection, i see that its…
Krishna
  • 321
  • 1
  • 6
  • 15
0
votes
1 answer

Wicket AJAX does not respond after dom changed by JavaScript

Wicket AjaxSubmitLink onSubmit is not called after applying appendJavascript which changes the DOM of a page. Sample code is: add(new ListView("list", someArrayList){ @Override protected void populateItem(final ListItem item)…
falconw
  • 59
  • 5
0
votes
1 answer

Wicket, GMap3, Overlay Click event, where did the user click? What is the coordinate (GLatLng)?

I have a GCircle on a Wicket GMap3. I want the user to be able to click on the map (add/remove markers) both in the circle, as well as out of the circle. Problem: the click event on the circle is not propagated to the map, as far as I understand,…
bpgergo
  • 15,669
  • 5
  • 44
  • 68
0
votes
2 answers

AbstractResource.ResourceResponse blocks user-interface while writing to OutputStream

I want to download a CSV file using Wicket, by implementing an AbstractResource. It looks something like this: public class ExportCsvFileResource extends AbstractResource { @Override protected AbstractResource.ResourceResponse…
Gabriel Ruiu
  • 2,753
  • 2
  • 19
  • 23
0
votes
1 answer

inmethod-grid wicket , DataGrid how to catch event such as sort event and change data source model from another component

Heloo i am using inmethod-grid components and I was wondering where can i catch the sort event in order for any time sort is called I want my com.inmethod.grid.datagrid to be renderd with the first page and not stayong on the current page in order…
yoav.str
  • 1,547
  • 6
  • 33
  • 73
0
votes
1 answer

Wicket head section hierarchy

I am a little confused about tags. I know from wicket 1.5 there was a change of head render strategy from parent->child to child->parent. Now I use wicket 6.9 and I have simple menu panel which I want to use some jquery effects. I want to use the…
Michał Króliczek
  • 1,319
  • 1
  • 11
  • 16
0
votes
1 answer

wicket download output stream

I want to download csv file , i take the response content and write to it , apprently wicket write after me and the content iam getting is the page html where it should be my csv I have seen in the example the usage of throw new…
yoav.str
  • 1,547
  • 6
  • 33
  • 73
0
votes
1 answer

wicket 1. 6.6 spring project

I am looking for a start point for my project I want to start a project containing wicket 1.6.6 integration to Spring simple log in page (no a must) do you know about one which will work with 1.6.6 (all the examples are 1.5 and under) and…
yoav.str
  • 1,547
  • 6
  • 33
  • 73
0
votes
3 answers

On click functionality of Button Inside ListView in Wicket Framework

Im populating a table using ListView component in wicket.The last column of my table is button. So for each row I'll have a button in the last column.What I'm trying to implement is onlick of the button I need to delete the appropriate row. So for…
Santo
  • 27
  • 1
  • 6
0
votes
1 answer

How to reduce info window size in wicket-stuff gmap3 library?

I write page, which shows sellers of used items. There is many short info elements on the map with price, state of item and period of availability of seller. I want to reduce free space of info windows so more of them can fit the screen. I try new…
cynepnaxa
  • 1,024
  • 1
  • 14
  • 30
0
votes
1 answer

Loadrunner replay error

I am recoriding a script on a web/http protocoll, but when replying I get errors on Recording the script twice and checking for diffs manually I found that my URLs has some "listeners" in them like: web_submit_data("bla_bla_2", …
Magnus Jensen
  • 905
  • 6
  • 36
  • 73
0
votes
1 answer

How to set the Value of preloaded DropDownChoice on the click of AjaxLink

Let's say I had the pagelistview on which there are some links, such as animals, birds, and trees, as well as a drop down, which has some values like 'Run', 'Fly' and 'Fruit'. The expected behavior is that when the user clicks an "animal" the…