Re: custom listeners

2012-05-17 Thread Ciocoiu Elvis
Sorry for that... OnCreate is my method method ... Called only first time in onbeforender. I'll adapt it to event mechanism when upgrading to 1.5 but for now i'm using 1.4. On Wed, May 16, 2012 at 9:29 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, On Wed, May 16, 2012 at 7:43 PM,

Re: CheckBoxMultipleChoice used in a Wizard Panel

2012-05-17 Thread nunofaria11
Hi there, I am having the same problem you had regarding a CheckBoxMultipleChoice used in a Wizard Panel: the list within the model containing the chosen items is always empty. Were you able to solve that problem? And if so, how? Thanks Nuno -- View this message in context:

Re: How to save the selected radio choice option in wicket

2012-05-17 Thread Andrea Del Bene
Hi, can you show the code you use to build radio buttons? Hi, I am new to Apache wicket. Can you please help me how to get the selected radio choice option in wicket.I have to save the some recruitment form with some fileds which we have to give dynamically .I have a static dropdown with list

Re: custom listeners

2012-05-17 Thread Ciocoiu Elvis
EditorContext { void registerPropertyProvider(PropertyProvider? propertyProvider); T PropertyAccessorT createPropertyAccessor(String propertyName); ... } ... public class SomePanel extends LazyPanel { @BasicField(lookup = true) private City city; @BasicField(lookup = true, showActions = true)

Re: WICKET-2056 broke DatePicker in ModalWindow in 1.4.16

2012-05-17 Thread dpmihai
Any news about this? Wicket 1.5.5 has the same problem. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/WICKET-2056-broke-DatePicker-in-ModalWindow-in-1-4-16-tp3416225p4642684.html Sent from the Users forum mailing list archive at Nabble.com.

Re: WICKET-2056 broke DatePicker in ModalWindow in 1.4.16

2012-05-17 Thread dpmihai
As I see in css : div class=w_content_2 div class=w_content_3 div class=w_content div id=_wicket_window_3 class=w_content_container style=overflow: auto; because there is a style overflow: auto everything that is inside the dialog will be scrolled. I wonder how can put

Re: VTD XML for wicket

2012-05-17 Thread Kees van Dieren
Its licenced GPL so wicket cannot depend on it. Best regards / Met vriendelijke groet, Kees van Dieren Squins | IT, Honestly Oranjestraat 23 2983 HL Ridderkerk The Netherlands Phone: +31 (0)180 415559 Mobile: +31 (0)6 30413841 www.squins.com http://twitter.com/keesvandieren Chamber of commerce

Full month calendar

2012-05-17 Thread Sandor Feher
Hi, I need for a full month calendar view to indicate when was the employee on holiday. I found at wicketstuff the calendars package and tried to used with not too much success. wm.add(new FullWeekCalendarView(calendar,new Date(2012,05,01),new Date(2012,05,31),ievent)); Throws me an

Re: How to save the selected radio choice option in wicket

2012-05-17 Thread Andrea Del Bene
Property 'selected' is not setted according to the selected GENDER? Does property 'selected' remains null when you press 'save' button ? add( new RadioChoiceString(radioButton, new PropertyModelString(this, selected ),GENDER ).setSuffix()); Here I taken Gender as a list of values dynamically .

Re: Full month calendar

2012-05-17 Thread Martin Grigorov
On Thu, May 17, 2012 at 11:23 AM, Sandor Feher sfe...@bluesystem.hu wrote: Hi, I need for a full month calendar view to indicate when was the employee on holiday. I found at wicketstuff the calendars package and tried to used with not too much success. wm.add(new

Re: How to save the selected radio choice option in wicket

2012-05-17 Thread Andrea Del Bene
Your solution should work the way it is. It's likely that you have a problem with form's submission. Are you sure that when you press 'save' button the form is submitted? And are you sure that radioButton has been added to the form that should be submitted by 'save' button? how can i set the

Re: How to save the selected radio choice option in wicket

2012-05-17 Thread Richard W. Adams
Conceptually, it's no different than any other form control. You associate the control with a named property in your model, when the form is submitted that property will be populated with the chosen value. If the user hasn't chosen ANY value, yes, you can get null. From: chaitanya b

Re: How to save the selected radio choice option in wicket

2012-05-17 Thread Richard W. Adams
Just like anything else: You put the desired value in your model Wicket handles selecting the correct button. From: chaitanya b harikaareddyit...@gmail.com To: users@wicket.apache.org Date: 05/17/2012 06:06 AM Subject:Re: How to save the selected radio choice option in

Re: AjaxFormChoiceComponentUpdatingBehavior CheckGroup and CheckGroupSelector

2012-05-17 Thread Martin Grigorov
Hi, Can org.apache.wicket.ajax.markup.html.form.AjaxCheckBox help for your case ? I'd write a custom selector that changes the checkboxes's state to 'selected' and then uses ajax to make a batch update. On Wed, May 16, 2012 at 9:28 PM, Adam Gray adam.j.g...@gmail.com wrote: Wicket 1.4.20 Use

Re: AjaxFormChoiceComponentUpdatingBehavior CheckGroup and CheckGroupSelector

2012-05-17 Thread Adam Gray
That was almost exactly how I ended up solving it last night. In the end, the AjaxCheckBox just sets the CheckGroup's model object such that it's all selected then adds the group to the AjaxRequestTarget just the once. That worked nicely for reducing the roundtrips. As an aside, I noticed that

Re: VTD XML for wicket

2012-05-17 Thread kamiseq
too bad pozdrawiam Paweł Kamiński kami...@gmail.com pkaminski@gmail.com __ On 17 May 2012 11:12, Kees van Dieren i...@squins.com wrote: Its licenced GPL so wicket cannot depend on it. Best regards / Met vriendelijke groet, Kees van Dieren Squins | IT, Honestly

Re: Full month calendar

2012-05-17 Thread Igor Vaynberg
you can try https://github.com/42Lines/wicket-fullcalendar -igor On Thu, May 17, 2012 at 2:23 AM, Sandor Feher sfe...@bluesystem.hu wrote: Hi, I need for a full month calendar view to indicate when was the employee on holiday. I found at wicketstuff the calendars package and tried to used

Re: Nested Form submitted via ajax clearing fields in outer form

2012-05-17 Thread Sebastien
Hi, why does it call onFormSubmitted for the root form? Is this the way it has to be programmed for nested forms to work? Well, I think it should not be the case, according to: https://cwiki.apache.org/WICKET/nested-forms.html Regards, Sebastien. On Thu, May 17, 2012 at 4:18 PM, Hill, Joel

Re: Single page wicket app

2012-05-17 Thread bobj
Thanks for the replies! By large I mean lots of tabs and panels, not lots of users say 100s not 1000s. By single page app, I mean there is only one page and the user never navigates to another page. Panels come and go as required. I do not expect to support the back button, with ajax and panel

Re: Single page wicket app

2012-05-17 Thread Martijn Dashorst
On Thu, May 17, 2012 at 6:36 PM, bobj bob.jen...@yahoo.com wrote: Since the users will stay on a single page for a long time, and never go to a different page, do I need to be concerned with wicket not saving/serializing the page state? It would be a drag for users that they would need to

Re: Single page wicket app

2012-05-17 Thread Martin Grigorov
On Thu, May 17, 2012 at 6:36 PM, bobj bob.jen...@yahoo.com wrote: Thanks for the replies! By large I mean lots of tabs and panels, not lots of users say 100s not 1000s. By single page app, I mean there is only one page and the user never navigates to another page. Panels come and go as

Re: Single page wicket app

2012-05-17 Thread Alec Swan
Our app uses one-page-ajax-panel-swap approach and I ran into an issue with versioned pages described here http://markmail.org/thread/q3ewso5dnf2wjsol Alec On Thu, May 17, 2012 at 11:12 AM, Martin Grigorov mgrigo...@apache.org wrote: On Thu, May 17, 2012 at 6:36 PM, bobj bob.jen...@yahoo.com

How to change the properties file location in Wicket

2012-05-17 Thread oliver.stef
Hi all, I just start using Wicket and I have a big problem! I have a few sources files (Page (folder) with the files: Page1.html, Page1.java, Page1.properties, Page2(another folder) with the files: Page2.html, Page2.java, Page2.properties). now, my problem is that i want to merge all the

Re: How to change the properties file location in Wicket

2012-05-17 Thread Martin Grigorov
Hi, Create MyApplication.properties and put it next to MyApplication.java. On Thu, May 17, 2012 at 2:27 PM, oliver.stef ova...@gmail.com wrote: Hi all, I just start using Wicket and I have a big problem! I have a few sources files (Page (folder) with the files: Page1.html, Page1.java,

Re: Full month calendar

2012-05-17 Thread Sandor Feher
Thanks Igor! I will have a try.. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Full-month-calendar-tp4642735p4643499.html Sent from the Users forum mailing list archive at Nabble.com. - To