Re: [Wicket-user] modifing Feedback

2006-04-15 Thread Alexander Lohse
Hi, as I said, this does not work! Maybe a Bug in 1.2 b3? Am 15.04.2006 um 00:07 schrieb Johan Compagner: Component protected void onBeforeRender() but you have to remember of course if it is the first time or not On 4/14/06, Alexander Lohse [EMAIL PROTECTED] wrote:Different said: How

[Wicket-user] CSS Image References

2006-04-15 Thread Alexander Lohse
Hi, are there any examples how to handle image-references in css resources? Regards, Alex ––– Alexander Lohse (Entwicklungsleitung Projektmanagement) Human Touch Medienproduktion GmbH Am See 1 17440 Klein Jasedow Deutschland Tel: +49 38374 752 11 Fax: +49

Re: [Wicket-user] bug with components names and tags

2006-04-15 Thread Juergen Donnerstag
And you example works perfectly if you rename wicket:id=message to wicket:id=myMessage? Juergen On 4/15/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: Would you please create a junit test case (see src/test) to reproduce it. Thanks Juergen On 4/15/06, Michael Day [EMAIL PROTECTED] wrote:

Re: [Wicket-user] modifing Feedback

2006-04-15 Thread Johan Compagner
onAttach is a bit earlier then onBeginRender. And i guess you have to override the onAttach of the feedback panel itself that one is called the first.johanOn 4/15/06, Alexander Lohse [EMAIL PROTECTED] wrote: Hi,as I said, this does not work!Maybe a Bug in 1.2 b3?Am 15.04.2006 um 00:07 schrieb

Re: [Wicket-user] Possible Enhancement for FormTester

2006-04-15 Thread Ingram Chen
Here you are. The attachment contains a patch to FormTester.java and related TestCase.Beside select() method, my patch of FormTester also contains some minor things:(1) change scope constructor of FormTester from default to protected for better extensibility. (2) fix bugs about fillBlankString in

[Wicket-user] help

2006-04-15 Thread ketan gote
hello friends i have taken 1) RequriedTextBox 2) ListMultipleChoice components for which i am implementing AjaxFormComponentUpdatingBehavi or(onblur) for RequriedTextBox now i what to pass entred value in RequriedTextBox to ListMultipleChoice , on other side i want to display pervious

Re: [Wicket-user] Possible Enhancement for FormTester

2006-04-15 Thread Juergen Donnerstag
Thanks for the contribution. I've committed it to SVN TRUNK and it'll be included in the next beta Juergen On 4/15/06, Ingram Chen [EMAIL PROTECTED] wrote: Here you are. The attachment contains a patch to FormTester.java and related TestCase. Beside select() method, my patch of FormTester

Re: [Wicket-user] bug with components names and tags

2006-04-15 Thread Michael Day
Yes, it does. On Apr 15, 2006, at 4:20 AM, Juergen Donnerstag wrote: And you example works perfectly if you rename wicket:id=message to wicket:id=myMessage? Juergen On 4/15/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: Would you please create a junit test case (see src/test) to reproduce

Re: [Wicket-user] bug with components names and tags

2006-04-15 Thread Juergen Donnerstag
I committed a fix a few minutes ago Juergen On 4/15/06, Michael Day [EMAIL PROTECTED] wrote: Yes, it does. On Apr 15, 2006, at 4:20 AM, Juergen Donnerstag wrote: And you example works perfectly if you rename wicket:id=message to wicket:id=myMessage? Juergen On 4/15/06, Juergen

[Wicket-user] do input elements require type attribute?

2006-04-15 Thread Michael Day
When specifying input elements, are we supposed to specify the type, or let wicket handle it? Example: input wicket:id=phone id=phone size=12 maxlength=20 / This works with RequiredTextField, but TextField makes me add the type=text attribute to the input wicket.markup.MarkupException:

Re: [Wicket-user] do input elements require type attribute?

2006-04-15 Thread Johan Compagner
I see we do this test: // If this is not a subclass (PasswordTextField) if (getClass() == TextField.class) { // check for text type checkComponentTagAttribute(tag, type, text); }But that is ofcourse wrong for the RequiredTextField that is just a TextField it has only overridden the

Re: [Wicket-user] do input elements require type attribute?

2006-04-15 Thread Michael Day
Bug added: http://sourceforge.net/tracker/index.php? func=detailaid=1470901group_id=119783atid=684975 On Apr 15, 2006, at 11:52 AM, Johan Compagner wrote: I see we do this test: // If this is not a subclass (PasswordTextField) if (getClass() == TextField.class) {

[Wicket-user] Wicket Developers in the SF Bay Area

2006-04-15 Thread Matt Carlson
Drop me a note with resume offline if you or someone you know is living in the SF area and are interested in working on a large Wicket intranet application for the retail industry. Our team has room for one to two more experienced developers so I figured it wouldn't hurt to ask the user group. All

Re: [Wicket-user] modifing Feedback

2006-04-15 Thread Igor Vaynberg
why are you adding feedback in such a strange place?feedback messages are meant to be added in response to an event, like a link's onclick() or form's onsubmit().-Igor On 4/15/06, Alexander Lohse [EMAIL PROTECTED] wrote: No, this does not work.Here is some test code. Funny though, the