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
1
vote
3 answers

How to set content_css for TinyMCE in Wicket?

I am kinda new to wicket and am trying to set the content_css for a tinymce editor. But can't figure out how to reference our site's style sheets via CssResourceReference. I just want to reference the style sheets I have in our regular wicket…
mplwork
  • 1,120
  • 10
  • 21
0
votes
1 answer

pass session to new domain using wickets?

I have an application that forwards request to a secure domain on any wickets page that is marked with @RequireHttps. I am also appending a session ID to the URL in order to keep the sessionData on the secure URL. I am listening for any session,…
Fergal
  • 43
  • 4
0
votes
0 answers

Wicket Behavior is working in some cases, and is not in others

I have implemented a wicket behavior as shown below: @Priority(100) public class MouseOverTextBehavior extends Behavior { private final String description; public MouseOverTextBehavior(String description) { this.description =…
0
votes
0 answers

WicketStuff TinyMCE adding javascript inside onRenderHead

What I want to do is modify a div's style inside the tinymce generated editor when the variable showToolbar is false, after the component has been loaded. In particular, the div is the one with class name 'mce-edit-area' I have a class that works as…
0
votes
1 answer

Where to download wicketstuff-dojo binaries?

I'm looking for wicketstuff-dojo binaries - legacy maven-based project depends on it. I can't find it in maven repo - http://wicketstuff.org/maven/repository/ and I can't build it since it's missing some sh script in trunk. Is there any place to get…
Ondra Žižka
  • 43,948
  • 41
  • 217
  • 277
0
votes
1 answer

How to focus a textfield using behavior-working in FF,but not in IE?

I tried to put focus on a textfield in a pop-up window which opens up when i click on a particular link.I used wicket behavior for this.But the fact is it is working only in FF and not in IE.I am at my wit's end.Please help. My code is: in .java…
LCtoM
  • 1
0
votes
0 answers

Wicket (9.8.0) application, deployed on Payara 5.201 throws exception when method of stateless beans is used

Using wicket version 9.8.0, I am trying to use WicketTester for application containing EJB injection related code. I created application using 'wicket.apache.org/start/quickstart.html', and deployed it on Payara server '5.201'. I added the…
0
votes
1 answer

Wicket (9.8.0) application using EJB injection throws exception while deploying on Payara 5.201

I am trying to use WicketTester for application containing EJB injection related code. I created application using 'wicket.apache.org/start/quickstart.html', and deployed it on Payara server '5.201'. Deployment was successful, and I was able to see…
0
votes
1 answer

Synchronous javascript wicket

I have a AjaxFormComponentUpdatingBehavior that i want to make synchronous This denied feature request is exactly what would of saved me (had it not been denied) -https://issues.apache.org/jira/browse/WICKET-534 I know sync javascript is bad,…
Ray E
  • 13
  • 3
0
votes
1 answer

Apache Wicket REST with Swagger UI

One of my project is using Apache Wicket 6.x and I have some API (resources) using wicketstuff-rest and it is working perfectly. But for my API documentations, I am maintaining a google document for these APIs. Problem is that whenever there are…
Borgy Manotoy
  • 1,960
  • 5
  • 27
  • 42
0
votes
1 answer

Last row of datagrid (com.inmethod.grid.datagrid) when selected, hangs all JS under Chrome

When selecting the last row in a datagrid-generated table (with setClickRowToSelect(true) of course), all javasript on the page hangs. That happens only on chrome (as far as I know). The same thing happens on wicketstuff's official example at…
0
votes
1 answer

In Wicket, how to implement a Form with Ajax Paginated List of Checkboxes?

On my Wicket page, I have a form with a couple of TextFields and a paginated List of Checkboxes iplemenet with dataview and and a data provider. I have used this example of Checkgroup. I have listed my source below. The problem is that when I…
user193116
  • 3,498
  • 6
  • 39
  • 58
0
votes
0 answers

Why is AjaxEventBehavior onEvent not called with Wicket 8 (worked ok with Wicket 7)?

I migrated from Wicket 7 to Wicket 8. Now OnLoadBehavior does not work anymore. I need to show some hidden fields in the view using target.add() inside onEvent e.g. if (showDateElement) { dateElement.setVisible(true); …
JRM
  • 61
  • 7
0
votes
1 answer

Apache Wicket - java.lang.NoClassDefFoundError: Could not initialize class net.sf.cglib.proxy.Enhancer

Need guidance regarding fixing of class not found error at runtime. I have checked all the similar answers, however wasn't able to solve the issue I'm facing. The project compiles, war file gets deployed on Tomcat successfully without issues The…
Sunil Kumar
  • 622
  • 1
  • 12
  • 33
0
votes
4 answers

Where to find the Wicket Stuff annotation package?

Where I can find wicketstuff-annotation.jar? It's used to be available at least in a Maven repo at http://wicketstuff.org/maven/repository but that doesn't exist anymore, and the Wicket Stuff homepage is not very helpful either. Specifically, I need…
Jonik
  • 80,077
  • 70
  • 264
  • 372