In order to satisfy customer requirements, we will need to let users exchange information among each other. The 'messaging system' does not have sophisticated back-end requirements and could be easily implemented ... |
I'm having trouble with adding and then removing an AjaxSelfUpdatingTimerBehavior in Apache Wicket. The behaviour gets added okay but then as soon as I remove the behavior I get a ... |
Just started playing around with, how is everyone linking up their component ids ?
So far the most frequent error I've got are mismatches in component ids. For example,
In the html
...
<span wicket:id="messageID">message ...
|
Every component returns false from getOuputMarkupId() by default.
I am curious about the reason. The design decision behind.
I am using ajax components and I need to refresh some others components on a ... |
How do you set focus on a component with Apache Wicket? Searching leads to very little information, mostly on setting the default field. I do not want to set ... |
SVG DOM can be controlled with JavaScript, so it can be AJAX-enabled... I wonder if there are some SVG components for Wicket yet. And if Wicket can have pure xml/svg as ... |
I'm trying to use wicket framework for my project, and some things with components are not clear for me.
For example, I want to create a component — javascript grid (jqGrid). All ... |
|
I have a need to create following kind of markup with wicket using ajax:
<table>
<tr>
<td><a>first</a></td>
<tr>
<tr>
<td>displayed/closed if first is clicked ...
|
I get an exception from Wicket 1.4.11 reading:
2010-11-03 17:44:51,971 [http-8080-1] ERROR org.apache.wicket.RequestCycle - Method onFormSubmitted of interface org.apache.wicket.markup.html.form.IFormSubmitListener targeted at component [MarkupContainer [Component id = customer]] threw an exception
... |
I have a Wicket panel that has AbstractAjaxTimeBehavior, that I'd like to unit test. How can I trigger a ajax event during the unit test that end up calling ... |
I'm a Wicket newb. This may just be my ignorance of the Wicket lifecycle so please enlighten me! My understanding is that Wicket WebPage objects are instantiated once and ... |
when i click on checkbox some fields need to be grayed out.
|
I have a page that has a status text label and a panel doing some DB query. since the query can take some time I am loading it using
add(new AjaxLazyLoadPanel("resultPanel")
{
...
|
I am using wicket 1.4.9 and implemented spring + wicket auth-role and using @AuthorizeInstantiation based on roles on pages. I have multiple custom roles.
I have followed this link to implement the ... |
I did an experiment. First I want to state the html:
<form wicket:id="form">
<table>
<tr>
<td>
...
|
This the exception:
java.lang.IllegalStateException: this kind of handler cannot be attached to multiple components; it is already attached to component [MarkupContainer [Component id = textField1]], but component [MarkupContainer [Component id = textField2]] ...
|
Where can I find a spinner component for Wicket?, including Maven repo and a source code example?
|
I have a linktree for navigation over data which shall replace a component in another div.
For this in the tree I have the treestatelistener implementing
public void nodeSelected(Object node) {
...
|
Is there a repeater component which would append more items through ajax when scrolled down, but would not keep all items in model? Something like facebook does when you click "More".
In ... |
I have a problem which I tried to explained in the Image.I hope that will help all to understand what I need.
My Base Page is like ... |
I have a component inside an <a/> tag that opens a popup window on click. It's an "add to favourite" link which works on KML files. My KML file has a ... |