Re: [Wicket-user] [AjaxFormComponentUpdatingBehaviour] updating a component

2007-01-11 Thread Carfield Yim
I personally think most desigers or client side javacript programmer just like to know the ID, may be we can use wicket:id as id of tag element so they know what it is? On 1/12/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > Because the id of tag elements is something that is used by designers >

Re: [Wicket-user] [AjaxFormComponentUpdatingBehaviour] updating a component

2007-01-11 Thread Igor Vaynberg
you must be using 1.2? in 1.3 or 2.0 you wouldve gotten an exception when trying to add the label to the target without prior setting the id -igor On 1/11/07, Henning Bredel <[EMAIL PROTECTED]> wrote: Martijn Dashorst schrieb: > add the second line here: > final Label usernameValidation= new

Re: [Wicket-user] [AjaxFormComponentUpdatingBehaviour] updating a component

2007-01-11 Thread Igor Vaynberg
not to mention it will seriously blow up the size of generated html - even with the new id compression. -igor On 1/11/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: Because the id of tag elements is something that is used by designers or client side javascript. Defaulting to true would compl

Re: [Wicket-user] [AjaxFormComponentUpdatingBehaviour] updating a component

2007-01-11 Thread Martijn Dashorst
Because the id of tag elements is something that is used by designers or client side javascript. Defaulting to true would complicate or even make it impossible to write your own javascript/css. Martijn On 1/11/07, Carfield Yim <[EMAIL PROTECTED]> wrote: > Just wonder, why don't make default of ou

Re: [Wicket-user] [AjaxFormComponentUpdatingBehaviour] updating a component

2007-01-11 Thread Carfield Yim
Just wonder, why don't make default of outputMarkupid as true? On 1/12/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > add the second line here: > final Label usernameValidation= new Label("username_validation", new > PropertyModel(this, usernameValid)); > usernameValidation.setOutputMarkupId(tr

Re: [Wicket-user] [AjaxFormComponentUpdatingBehaviour] updating a component

2007-01-11 Thread Henning Bredel
Martijn Dashorst schrieb: > add the second line here: > final Label usernameValidation= new Label("username_validation", new > PropertyModel(this, usernameValid)); > usernameValidation.setOutputMarkupId(true); > > // username > > > On 1/11/07, Henning Bredel <[EMAIL PROTECTED]> wrote: > >> Sorry

Re: [Wicket-user] [AjaxFormComponentUpdatingBehaviour] updating a component

2007-01-11 Thread Martijn Dashorst
add the second line here: final Label usernameValidation= new Label("username_validation", new PropertyModel(this, usernameValid)); usernameValidation.setOutputMarkupId(true); // username On 1/11/07, Henning Bredel <[EMAIL PROTECTED]> wrote: > Sorry for format, ... my mail-software kicked the sp

Re: [Wicket-user] [AjaxFormComponentUpdatingBehaviour] updating a component

2007-01-11 Thread Henning Bredel
Sorry for format, ... my mail-software kicked the spaces,... - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics t

[Wicket-user] [AjaxFormComponentUpdatingBehaviour] updating a component

2007-01-11 Thread Henning Bredel
hi, i´ve written a validation, which validates some inputs of a TextField. Trying to make an added AjaxCoomponentUpdating- Behaviour updating the component failed in the way, that the component is only updated by ajax after clicking the submit-button. I didn´t find any hints why ajax is waiting