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
1 answer

Wicket - Datatable custom pagination

I am working on wicket datatable which uses built-in pagination feature where data is given through dataprovider. Wicket NavigationToolbar for displays links used to navigate the pages of the datatable as shown below public class…
rocky
  • 753
  • 2
  • 10
  • 26
0
votes
2 answers

Display records in the read area of Screen

I want to display some records in the read area of GUI screen after performing some action. I have some input fields in the screen which should be entered by users and based on the entry, I am calling a function from database which is displaying…
Trips
  • 35
  • 8
0
votes
1 answer

Spring + Wicket REST Exception Handlers

I do not know how to start the question but let me give you some info of the application setup. The project is spring + wicket and everything is OK. There are error pages (400, 401, 403... etc) setup that will be displayed when there are…
Borgy Manotoy
  • 1,960
  • 5
  • 27
  • 42
0
votes
1 answer

Wicket - Init a Component with Loadable Detachable Model on click event

I am adding ChildPanel in the constructor of Panel. When the Panel loads the child panel is rendered with the data that is returned by getData(). Below is the code. Panel public Panel(String aId, IModel model) { super(aId); …
Sibgha
  • 479
  • 3
  • 10
0
votes
1 answer

Spring Rest API returning entity/object with joda local date, local time, date time should display formatted date or time

I have a spring rest api (actually apache wicket rest api on top of spring project), that returns an object with a property which is a joda LocalDate. Everything is fine except that the joda LocalDate/LocalTime/DateTime... they are returned in this…
Borgy Manotoy
  • 1,960
  • 5
  • 27
  • 42
0
votes
1 answer

Apache wicketStuff-GMap Api

How do I feed bunch of addresses to Google map via Wicketstuff GMap api so that when map is launched, I see marker/balloon based on city. Basically I want to be able to feed all the addresses and have map show one balloon/city and when city balloon…
shrM
  • 11
  • 1
  • 4
0
votes
1 answer

Uncheck conversion on returning class type

I have a method that returns a class type, and it is working right. The problem is... I am getting some compilation warnings indicating unchecked conversion. Below is the warning message I got: Warning: java: getAjaxEventPayloadClass() in
Borgy Manotoy
  • 1,960
  • 5
  • 27
  • 42
0
votes
1 answer

wicket form clear choice after refresh

I'm currently using three different forms, RadioChoice, DateField and DropDownChoice, in an application where the page reacts based on what the user picks from this form. The problem here is that when I submit the form that is using DateField and…
Lars Karlsen
  • 117
  • 9
0
votes
1 answer

Wicket - MarkupNotFoundException: Markup of type 'html' for component 'com.hello.Hello' not found

I know it is a very basic topic but unfortunately I cannot figure it out why I am getting the above error message.... I am trying to generate a simple HelloWorld Wicket application but I keep getting a html markup error... My code is the…
dorcsi
  • 295
  • 2
  • 6
  • 24
0
votes
0 answers

Embeded specific div content of External URL in wicket framework

I want to get content of a
from external URL, using Wicket, in a tooltip or titlem using AttributeModifier constructor. In the external URL page source I have
...
. How can I display this content in wicket tooltip? I…
nitin
  • 83
  • 1
  • 9
0
votes
1 answer

Wicket-select2 dropdown is not update after provide new modelobject

I have wicket-select2 dropdown for country. Select2Choice country = new Select2Choice("country", new PropertyModel(params, "selectedCountry"),new CountriesProvider(params)); adding new country using popupPanel after click…
nitin
  • 83
  • 1
  • 9
0
votes
1 answer

How to get Label from IValidatable in Wicket 7

Is it possible to get the label of my component inside a validation? I need this label for a custom error message in my validation. It looks like: "The value may not be less than {0}." If my component has a label then i want to write it before…
Zkyy
  • 3
  • 2
0
votes
0 answers

Wicket Deployment mode map resources wrong way

I have Page getRootRequestMapperAsCompound().add(new NoVersionMapper("/card/${cardId}", CardPage.class));. On this page there is TinyMCE4 editor. Which try to load images using relative path "images/1.jpg" I've added resource mapping to allow…
Yevgen Kulik
  • 5,713
  • 2
  • 22
  • 44
0
votes
1 answer

Wicket:: add custom attribute to
  • element
  • how can I add a custom attribute to an html list element? I tried the following but got markup exception: WebMarkupContainer con = new WebMarkupContainer("Temp"); con.add(new AttributeAppender("note",true, new…
    0
    votes
    1 answer

    Add fucntion call to WicketStuff Spinner properties

    How do you put a function call to the java.util.Properties' onIncrement, onDecrement, afterUpdate or onStop property of WicketStuff's Spinner configure method? I tried the following but the function is not called: TextField textField = new…
    user2340939
    • 1,791
    • 2
    • 17
    • 44