wicket Questions
3
Solved
I use junit to assert the existing of wicket components:
wicketTester.assertComponent("dev1WicketId:dev2WicketId:formWicketId", Form.class);
This works for some forms. For complex structure, it ...
Streamlined asked 26/11, 2012 at 12:45
6
Solved
I created a link with static text. That works fine but now I also want to change the text when you click the link.
I got as far as this:
add(new Link("doAnything") {
@Override
public void onCli...
Dire asked 14/7, 2010 at 7:44
6
In my Wicket application I used one radio button with "yes" and "no" options. If I select "No", I should display one dropdown choice. I wrote code using AjaxFormChoiceComponentUpdatingBehavior. How...
Macle asked 30/5, 2011 at 13:1
2
Solved
I have used the jQuery AJax call to send JSON as documented here in StackOverflow
The problem is that I am not receiving any Data on the server . I can see that the call did reach the target ajax ...
2
Solved
I want to replace "choose one" option in drop down choice with other String "successfully occured" and I dont want to show list item to set the default.
DropDownChoice<Person> customer = new...
Tankard asked 16/11, 2011 at 10:44
5
Solved
I would like to display the currently running version of my web application in the page. The project is based on Maven, Spring, and Wicket.
I'd like to somehow get the value of maven's ${project.v...
2
Solved
I am trying to log few values in the onBeginRequest() of RequestCycle() in wicket.
But the values are not being logged in the debug file. I am putting the values in the MDC in RequestCycleListener...
2
Solved
I have a wicket bootstrap DateTextField on a panel inside modal. When datepicker is shown from click, datepicker is attached to the root page, not the modal.
That causes a problem: without adding ...
Oneeyed asked 26/1, 2016 at 7:6
2
Solved
When I first load a page, the default option on a dropdownchoice is "Choose One". Is there a way to keep it in the dropdown, even when I have selected a choice?
(In case I would like to put nothing...
Firearm asked 8/8, 2011 at 15:24
3
Solved
I'm using wicket 1.5.1, couldn't figure this out.
public class MyPage extends WebPage {
public MyPage() {
String clientAddress = ...?
2
Solved
I have an AjaxFallbackDefaultDataTable which contains one row per test result. A test result may have a note attached to it, which needs to be displayed prominently below the test result, hopefully...
4
I have a long (and happy so far) experience with Spring MVC, but lately I'm getting interested in Wicket.
My question is also on how to handle (with Wicket) DI, Transaction Mgmt, JDBC connections ...
Ontine asked 29/2, 2012 at 21:51
4
Solved
I've deployed an Apache Wicket web-application that uses Spring and Hibernate to my Tomcat 5.5 instance. When I navigate to the Tomcat Manager interface I see that the web-application I deployed is...
Gearbox asked 14/4, 2010 at 21:55
2
Solved
Is it possible to inject a value to a wicket page using spring?
With @Value it's possible to inject values to a spring bean.
I know the @SpringBean annotation, but this is only for beans.
My wor...
3
Solved
I have a block level element, a container, that should be hidden when all its child Wicket elements (buttons) are hidden. In other words, if any child button is visible, the container should be vis...
3
Solved
When I add a ChildPanel to a page, I get an error that states:
org.apache.wicket.WicketRuntimeException:
The component(s) below failed to render.
A common problem is that you have added a compone...
Chairwoman asked 19/6, 2012 at 21:30
2
Solved
The Eclipse JDT compiler appears to have a problem whereby, under certain circumstances, Java 8 lamdas are not deserializing correctly and instead throw an IllegalArgumentException. I'm using the m...
Quatre asked 15/12, 2014 at 16:27
6
Solved
I have a Java/Wicket page that generates a JNLP file that launches my company's software. This class will optionally take some url parameters and embed them as arguments in the JNLP. When the user ...
4
How do I define my own feedback messages in Wicket?
For example: if I give an incorrect username, I want to get an error message like "The user name in incorrect, try to login again." instead of us...
Subantarctic asked 21/4, 2011 at 4:13
1
Solved
I'm using wicket framework.
Does anybody know how to control visibility of components in the form by clicking on checkBox component, and how to get boolean value of checkbox state when submit the f...
Speight asked 21/8, 2014 at 9:2
2
Solved
I have a project on Eclipse, Wicket, Spring, Hibernate. Every thing works normaly except : when I try
public class SortableContactDataProvider extends SortableDataProvider<User>
{
@SpringBe...
4
Solved
I need to add a button to the title bar of a Wicket modal window. I can't find anything useful in the Wicket API that will help me. Is there any way to customize the title bar in this way?
Mcadoo asked 6/9, 2009 at 9:56
5
Solved
I need to retrieve URL from current Web page opened in Firefox by using Wicket. Can somebody tell me how to do that?
1
Solved
What I want:
if I click on a button, it should be NOT enabled (not clickable)
BEFORE the other methods (in the clicking) would finish, only AFTER
the methods' end.
Here is my code to the button...
Alethaalethea asked 25/2, 2014 at 14:32
4
How to defeat IE and Firefox dialog popup when trying to setResponsePage() from a wicket modalWindow per below. Dialog popup demands an answer to: "This page is asking you to confirm that you want ...
Thornie asked 4/11, 2011 at 17:23
© 2022 - 2024 — McMap. All rights reserved.