Questions tagged [wicket-1.5]

Apache Wicket, commonly referred to as Wicket, is a lightweight component-based web application framework for the Java programming language conceptually similar to JavaServer Faces and Tapestry. This tag is specific for wicket 1.5 since many changes have been done to the API in this version in a way that questions need to be answered in a different way for this version.

238 questions
0
votes
0 answers

Can you make a Wicket autocomplete field pop down using a button?

Is it possible to display the list of choices of a AutoCompleteTextField from a button. (Javascript or something in the AutoCompleteTextField code?)
Zzub
  • 41
  • 4
0
votes
1 answer

Wicket Retrieving A CheckGroup's model when clicking a checkbox

I have a form with a checkbox column. ArrayList myObjectsList = // Load from database ... ArrayList selectedObjects = new ArrayList(); Form form = new Form("my-form"); CheckGroup myObjectGroup = new…
Kevin D.
  • 1,500
  • 1
  • 18
  • 41
0
votes
1 answer

Hide debug messages from FeedbackMessageFilter in wicket 1.5 during production?

In developing some of my Web Applications I use debug("stuff here"); to help me figure out whats going on. I'd rather not have to go in and find all of my debug(*); lines and remove them. Is there a way I can specify at the application level not to…
Raystorm
  • 6,180
  • 4
  • 35
  • 62
0
votes
3 answers

Triggering a server request (ajax?) after page render to re-render certain parts of the page in apache wickets

On my page there is a panel that shows a list of car dealers. The panel displays a list of dealers with information for each dealer as mentioned below. For each dealer I need to show : name, address, phone, hours. The data is in json. name,…
Kumar Manish
  • 1,166
  • 1
  • 16
  • 28
0
votes
1 answer

How to set the Value of preloaded DropDownChoice on the click of AjaxLink

Let's say I had the pagelistview on which there are some links, such as animals, birds, and trees, as well as a drop down, which has some values like 'Run', 'Fly' and 'Fruit'. The expected behavior is that when the user clicks an "animal" the…
0
votes
1 answer

Interaction b/w two forms in Apache Wicket

This may sound a bit odd, I have two forms in a single HTML page with different wicket id's.Is it possible that when a user clicks a button eg.(save) it saves the data from both the forms together.I can't keep a single form. I am new to…
lazyprogrammer
  • 633
  • 9
  • 26
0
votes
0 answers

Convert every character entered in textfield need to be coneverted into uppercase in wicket page

I have a requirement, program should convert every character entered into wicket textfield should be transformed to upper case. and when we get the value from model, it should be an uppercase String. UpperCaseBehavior.java import…
0
votes
1 answer

wicket modal popup close issue

I have a page from where i called a modal pop up. Again on save action I called another confirm modal popup. Now when I click on ok then I am supposed to close both modal pop up. Its working fine in all broswer except IE9 AND Chrome.…
Karn_way
  • 1,005
  • 3
  • 19
  • 42
0
votes
1 answer

Wicket RadioGroup, AjaxFormChoiceComponentUpdatingBehavior, Form Submit?

I got a RadioGroup in Wicket with an AjaxFormChoiceComponentUpdatingBehavior added. Upon triggering the change, the behavior is sending a POST, but other changes on the parent form are not sumbitted. My question is: What is the correct way to…
chris polzer
  • 3,219
  • 3
  • 28
  • 44
0
votes
0 answers

AbstractAjaxTimerBehavior start immediately

I'm trying to set an AbstractAjaxTimerBehavior to start immediately when called and then be repeated every X seconds (let's say 10 seconds), but i couldn't find something. I thought of a hack by setting the first interval to 1 second and then inside…
Apostolos
  • 10,033
  • 5
  • 24
  • 39
0
votes
2 answers

Adding additional components to a web page after rendering by Wicket

I have a requirement to create a web page using Wicket 1.5, which can present a variable number of panels to capture user input. All the panels have the same structure. The page would start off with one panel, and includes a button to dynamically…
Andrew Fielden
  • 3,751
  • 3
  • 31
  • 47
0
votes
2 answers

Wicket 1.5 - EmailTextField: accept "plus" symbol

I'm using a EmailTextField in a wicket 1.5 app in order to log users. According to GMail alias, a + symbol may be present in email but wicket doesn't allow it. Is there a way to accept extra symbol in the validator?
Nico
  • 171
  • 1
  • 7
0
votes
1 answer

How to turn off redirect for one page in Wicket 1.5?

We are on Wicket 1.5 since 6 is not released yet. And I need to turn off redirect for one page (which does not have any meaningful forms on it). How do I turn off redirect for one page in Wicket 1.5? Edit: We are on wicket 1.5 since wicketstuff is…
Artem
  • 7,275
  • 15
  • 57
  • 97
0
votes
1 answer

wicket 1.5 url after form submission with stateful page

i know there are many similar questions on this (an other) site but none of them helped me with my problem. i have 2 wicket stateful pages. the pages are mounted as follows: mountPage(firstPath, firstPage.class); mountPage(secondPath,…
zuckermanori
  • 1,675
  • 5
  • 22
  • 31
0
votes
0 answers

AJAX-updating a behavior in Wicket, based on a Form

Here's the deal: I've got a class that extends AbstractAjaxBehavior. It's got an instance on a Page, where one of its methods is overriden, tying its output to an object (or a model of it) that is the model for a form. I want that method's output to…
userBigNum
  • 227
  • 2
  • 12
1 2 3
15
16