I got a page with several panels that takes several parameters in their constructors. One of them being a menu that takes a list for the different buttons in the menu.
I\'m using wicket 1.5开发者_JAVA技巧.1, couldn\'t figure this out. public class MyPage extends WebPage {
When I access a specific page of my Wicket application, I get a NotSerializableException: java.io.NotSerializableException: my.package.MyPanel$1
My architecture looks like this: View - Controller - Services Think of one of the views as a Person details page. The controller calls
I created one checkbox and one textfield for each line using wicket listview. When the user selects the checkbox I am able to set the related boolean value
I have a page containing two combo boxes. I want to make them in a way that when I change the first combo box the content of the second combo box, which is got from database, is c开发者_如何转开发hang
I need to set the null value string for a dropDownChoice component. The default value for null choice is \"Choose One\", which is hardcoded in the Wicket AbstractSingleChoice class.
I\'d like to have a PropertyColumn of a DataTable right-aligne开发者_开发百科d. But if I try to add a new SimpleAttributeModifier(\"align\", \"right\") to the cell item, it is added to a span within t
I have a form where I need to validate DateFrom and DateTo. I have done like this: // start date RequiredTextField<Date> startdateField =
DownloadLink is nice and handy for creating a button/link for downloading a file, along these lines: add(new DownloadLink(\"downloadButton\", getReportFile(), \"report.pdf\"));