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
4
votes
2 answers

How do I use html5 calendar input type in wicket

I'm experimenting with HTML5. What I'd like to know is how does Wicket work with HTML5 input types such as date and email, if at all? Currently Wicket uses java script to generate a calendar for date inputs. What complicates this issue is how…
sardo
  • 2,731
  • 3
  • 19
  • 18
3
votes
1 answer

Allow only whole number in wicket Textfield

I am using a NumberTextField in Wicket 7 and my requirements are User should be able to enter only a whole numeric char into the textfield and neither a decimal value nor any non-numeric char. char should not be more than 3 characters long. But…
nitin
  • 83
  • 1
  • 9
3
votes
1 answer

Wicket String Validator for an Object mapped Form Component

I am using a Form component to edit values in an Object . I have mapped an object using a LoadableDetachableModel to the form so that the value in the object is displayed on the form and updates are applied automatically. final Form
Jay
  • 690
  • 1
  • 10
  • 27
2
votes
1 answer

How to redirect to another page while keeping the original url?

In my Wicket 1.5 web application, I want to redirect to another bookmarkable page, whilst the URL of the originating page should remain. @MountPath(value="page1") public class WebPage1 extends WebPage { public WebPage1() { ... …
Andreas Krueger
  • 1,497
  • 13
  • 16
2
votes
1 answer

Https Connection subdomain URL change

Https Connection subdomain Im Looking to set up my wickets 1.5 application with HTTPS. I have added the following to my Application Class. setRootRequestMapper(new HttpsMapper(getRootRequestMapper(), new HttpsConfig(8080,…
Fergal
  • 43
  • 4
2
votes
1 answer

wicket date range (From-To) validation

I have a form where I need to validate DateFrom and DateTo. I have done like this: // start date RequiredTextField startdateField = new RequiredTextField("startDate", Date.class); startdateField.add(new…
Shahriar
  • 825
  • 1
  • 15
  • 31
2
votes
1 answer

Hiding Wicket WebMarkupContainer won't work

Hey I have a ListView nested inside a ListView and want to change the inner ListViews visibility on click of an AjaxLink. I saw a lot of posts about it and took some advice from it. E.g. : .setMarkupId(true), add a WebMarkupContainer, ... But…
Peter
  • 1,844
  • 2
  • 31
  • 55
2
votes
1 answer

How to Create a dependable palette in Wicket

I have created a palette in wicket and I'm able to populate the palette left side window. But I want to make the options in the palette are dynamic, able to do the same. But the problem is that the palette is not getting populate with selected…
user1665207
  • 61
  • 1
  • 6
2
votes
1 answer

Wicket CheckGoup get selected items markupIds

Is it possible to get markup id's from checkgroup in wicket, i have the following code Form f = new Form("form"); add(f); final CheckGroup group = new CheckGroup("group", new ArrayList()); f.add(group); group.add(new…
falconw
  • 59
  • 5
2
votes
2 answers

Adding a listener on a Wicket TextField

I'm trying to make a RadioField, like (yes, no, unknown). For "yes" i have a textfield. I want that if anything is typed on the textfield, "yes" will be selected on the radiobutton. I tried this, but i'm getting an Exception: size = new…
ZelelB
  • 1,836
  • 7
  • 45
  • 71
2
votes
2 answers

Strict date pattern for DateTextField in Wicket

I have a DateTextField component in my application and I want the input of date using a predefined pattern. The pattern that I need is "yyyy-MM-dd". I created the DateTextField using the following code. DateTextField dtf_ExpiryDate =…
Jay
  • 690
  • 1
  • 10
  • 27
2
votes
1 answer

Apache Wicket : Getting Selected Dropdown Value from a table on UI

I have an object something like public class Table { private String id; private String name; private List fieldsList; } public class Field { private List columnList; } public class Column{ String id; } So, Here…
speruri
  • 73
  • 2
  • 10
2
votes
1 answer

Wicket DefaultDataTable - Refresh it on browser back button

In my application I am using DefaultDataTable with SortableDataProvider which has LoadableDetachableModel as the model. I used it to display a set of records ( say RecordList page). When I add or remove some records and load the page RecordList…
Jay
  • 690
  • 1
  • 10
  • 27
2
votes
0 answers

Launching REPL in tomcat container

I am trying to launch the scala REPL (2.9.1) in tomcat container and getting the following error Failed to initialize compiler: object scala not found. Note that as of 2.8 scala does not assume use of the java classpath. For the old behavior pass…
Sumit Kathuria
  • 103
  • 2
  • 7
1
vote
1 answer

PageableListView Not rendering my data as required

i am working on wicket, where i am supposed to show my data's under Name Single Player Score Double Player Score Total Score
Robin
  • 128
  • 1
  • 2
  • 13
1
2 3 4 5 6