Re: AjaxSubmitLink not calling the onsubmit event handler

2010-03-27 Thread Richard Nichols
Yeah, maybe one of the wicket devs could comment on whether this is expected behaviour? In any case, I have built a workaround as part of my open source http://code.google.com/p/visural-wicket/ project. See -

Re: AjaxSubmitLink not calling the onsubmit event handler

2010-03-27 Thread Igor Vaynberg
open an rfe -igor On Fri, Mar 26, 2010 at 11:12 PM, Richard Nichols r...@richardnichols.net wrote: Yeah, maybe one of the wicket devs could comment on whether this is expected behaviour? In any case, I have built a workaround as part of my open source

Re: Wicket page test 1.3 is now available

2010-03-27 Thread Martin Makundi
If you want to compose test pages on the fly, you should try also mashupwebpage: public void testSomeFieldComponent() { Page page = new MashupWebPage(); Form form; page.add(form = new MashUpForm(GID)); FormComponent customField; form.add(customField = new CustomFieldToBeTested(GID));

Re: Wicket JavaScript Library Integration - A Common Base

2010-03-27 Thread Uwe Schäfer
Cemal Bayramoglu schrieb: dear Cemal, What I was proposing was not as a solution to incompatibilities between such multiple dependencies. fair enough. I am a believer in keeping the core as simple and light as possible whilst still open (and designed for) potential enhancement with

Master/Detail with DropDownChoice

2010-03-27 Thread Wolfgang Grossinger
Hi, I have a real big problem and cant find any solution: What I want to do ist to have a master/detail view, where a DropDownChoice is the master to select the detail. The detail view is also used to save new Items and where some fields are 'required'. 1.) I need some kind of submit

Re: Master/Detail with DropDownChoice

2010-03-27 Thread Martin Makundi
Hi! 1.) I need some kind of submit behavior. AjaxEventBehavior(onchange) will not work, because it doesn't deliver the current selection. We have no problem using AjaxFormComponentUpdatingBehavior 2.) Master and detail must be 2 different forms, because if I use one form, I would get a

drop down problem

2010-03-27 Thread chinedu efoagui
Hello all, I have this dropdown that shows up a list of employee see code below code public EmployeeDropDownChoice(String id,IModel model,IModel model2){ super(id,model,model2); final ChoiceRenderer renderer = new ChoiceRenderer(fullname, id);

Re: drop down problem

2010-03-27 Thread Martin Makundi
ajax link does not submit form.. use submitlink or ajaxbutton ** Martin 2010/3/27 chinedu efoagui chinedub...@gmail.com: Hello all,  I have this dropdown that shows up a list of employee see code below code  public EmployeeDropDownChoice(String id,IModel model,IModel model2){        

Column filter customize

2010-03-27 Thread Sigmar Muuga
Hello, I have the following code in FilterToolbar for my DefaultDatatable: LoadableDetachableModelList? extends String choices = new LoadableDetachableModelList? extends String() { private static final long serialVersionUID = 1L; @Override protected

AutoCompleteTextField: position of list doesn't factor in scrollbar location in IE6 on complicated page

2010-03-27 Thread Peter Jones
I have *AutoCompleteTextFields *on two apps that misbehave in IE6 when the page is scrolled at all. The choice list appears above where it should, off by the distance that the page is scrolled down by. The position works correctly in FF. The wicket examples page doesn't exhibit this behavior,

Re: Feedback border when using in a repeating view

2010-03-27 Thread Doug Leeper
Update... I changed to a ListView and set the reuse item flag to true and I achieved what I was looking for. -- View this message in context: http://old.nabble.com/Feedback-border-when-using-in-a-repeating-view-tp28048563p28056267.html Sent from the Wicket - User mailing list archive at

How to put a validation error message near its field?

2010-03-27 Thread David Chang
FeedbackPanel is great in in terms of gathering messages in a central place. But I saw many great sites have messages near their fields. How can we do this in Wicket? Thank in advance for any info or pointer! Regards.

Re: How to put a validation error message near its field?

2010-03-27 Thread James Carman
http://wicket.apache.org/docs/1.4/org/apache/wicket/markup/html/panel/ComponentFeedbackPanel.html On Sat, Mar 27, 2010 at 10:11 PM, David Chang david_q_zh...@yahoo.comwrote: FeedbackPanel is great in in terms of gathering messages in a central place. But I saw many great sites have messages

Re: How to put a validation error message near its field?

2010-03-27 Thread David Chang
Jame, thanks for quick reply on a Saturday evening.. Exactly what I want. Best, David --- On Sat, 3/27/10, James Carman jcar...@carmanconsulting.com wrote: From: James Carman jcar...@carmanconsulting.com Subject: Re: How to put a validation error message near its field? To:

Re: Wicket and JEE6

2010-03-27 Thread James Carman
Ok, I've got the OWB examples working now with my local patched version of OWB (patches submitted to JIRA). Also, note I've renamed the library to wicket-cdi: http://svn.carmanconsulting.com/public/wicket-cdi/trunk On Sat, Mar 27, 2010 at 1:39 AM, James Carman