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 can a component add feedback-messages the first time he is
displayed?

  - I cannot add feedback inside the constructor, because the page is
not yet known.
  - I cannot override setParent, to find out when a page is given.
  - and later inside the process: see below

Thanks for any help.

Am 14.04.2006 um 17:36 schrieb Alexander Lohse:

 Hi,

 is there any automatic-pre-render-method-invocation I can use to
 check conditions and add feedback?

 I tried onBeforeRender(). This seems to be to late to modify  
content?!


 I tried onAttach(). Here I have a strange phenomenon: The new
 feedback is not displayed, but I have an SimpleAttributeModifier
 that checks against: getPage().getFeedbackMessages().isEmpty() and
 this hits.

 Thank you for any help.

 Alex





 ---
 This SF.Net email is sponsored by xPML, a groundbreaking scripting
 language
 that extends applications into web and mobile media. Attend the
 live webcast
 and join the prime developer group breaking into this new coding
 territory!
 http://sel.as-us.falkag.net/sel?
 cmd=lnkkid=110944bid=241720dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

–––
Alexander Lohse
(Entwicklungsleitung  Projektmanagement)

Human Touch Medienproduktion GmbH
Am See 1
17440 Klein Jasedow
Deutschland

Tel: +49 38374 752 11
Fax: +49 38374 752 23
e-mail: [EMAIL PROTECTED]
Internet: http://www.webjazz.de
–––




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting  
language
that extends applications into web and mobile media. Attend the  
live webcast
and join the prime developer group breaking into this new coding  
territory!

http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user



–––
Alexander Lohse
(Entwicklungsleitung  Projektmanagement)

Human Touch Medienproduktion GmbH
Am See 1
17440 Klein Jasedow
Deutschland

Tel: +49 38374 752 11
Fax: +49 38374 752 23
e-mail: [EMAIL PROTECTED]
Internet: http://www.webjazz.de
–––




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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 38374 752 23
e-mail: [EMAIL PROTECTED]
Internet: http://www.webjazz.de
–––




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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:
  In my markup, I have added a RequiredTextField component called
  message.  I also use the wicket:message tag.  Wicket seems to get
  them confused.  Is this a bug?
 
  wicket.markup.MarkupException: Component message must be applied to a
  tag of type 'input', not 'wicket:message key=phone' (line 0,
  column 0)
 
 
  ---
  This SF.Net email is sponsored by xPML, a groundbreaking scripting language
  that extends applications into web and mobile media. Attend the live webcast
  and join the prime developer group breaking into this new coding territory!
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 



---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 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 can a component add feedback-messages the first time he is
 displayed? - I cannot add feedback inside the constructor, because the page is not yet known. - I cannot override setParent, to find out when a page is given. - and later inside the process: see below
 Thanks for any help. Am 14.04.2006 um 17:36 schrieb Alexander Lohse:  Hi,   is there any automatic-pre-render-method-invocation I can use to
  check conditions and add feedback?   I tried onBeforeRender(). This seems to be to late to modify content?!   I tried onAttach(). Here I have a strange phenomenon: The new
  feedback is not displayed, but I have an SimpleAttributeModifier  that checks against: getPage().getFeedbackMessages().isEmpty() and  this hits.   Thank you for any help.
   Alex   ---  This SF.Net email is sponsored by xPML, a groundbreaking scripting
  language  that extends applications into web and mobile media. Attend the  live webcast  and join the prime developer group breaking into this new coding  territory!
  http://sel.as-us.falkag.net/sel?  cmd=lnkkid=110944bid=241720dat=121642  ___
  Wicket-user mailing list  Wicket-user@lists.sourceforge.net  https://lists.sourceforge.net/lists/listinfo/wicket-user
 ––– Alexander Lohse (Entwicklungsleitung  Projektmanagement) Human Touch Medienproduktion GmbH Am See 1 17440 Klein Jasedow
 Deutschland Tel: +49 38374 752 11 Fax: +49 38374 752 23 e-mail: [EMAIL PROTECTED] Internet: http://www.webjazz.de
 ––– --- This SF.Net email is sponsored by xPML, a groundbreaking scripting
 language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! 
http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642 ___ Wicket-user mailing list 
Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user–––
Alexander Lohse(Entwicklungsleitung  Projektmanagement)Human Touch Medienproduktion GmbHAm See 117440 Klein JasedowDeutschlandTel: +49 38374 752 11Fax: +49 38374 752 23e-mail: 
[EMAIL PROTECTED]Internet: http://www.webjazz.de–––---
This SF.Net email is sponsored by xPML, a groundbreaking scripting languagethat extends applications into web and mobile media. Attend the live webcastand join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user



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 constructor and add a method submit(buttonPath) for the issue discuss on 
http://sourceforge.net/mailarchive/forum.php?thread_id=10171730forum_id=42411
Hope these can be incorporated into next release too.On 4/14/06, Juergen Donnerstag [EMAIL PROTECTED]
 wrote:sure, everything that makes life easier and doesn't break existing
code is welcome. Send it to me.JuergenOn 4/14/06, Ingram Chen [EMAIL PROTECTED] wrote: Currently FormTester only does raw String on request parameters.
 As http://www.wicket-wiki.org.uk/wiki/index.php/Testing states, selecting value from Component such as RadioGroup, DropDownChoice... etc is pain:
 form.setValue(offSiteAccessEnabled, 0:form:offSiteAccessEnabled:Yes); In my team we define a new method like: select(String path, final int index)
 This simplified selection to just an index. The method supports built-in component: AbstractChoice, RadioGroup, and CheckGroup but the implementation rely on reflection heavily.
 Further, it may require addtional methods such as:selectMulti(String path, final int[] indexes)//for ListMultiChoice and CheckGroup Though I'm not sure that just invoking select() multiple times is better.
 I could donate the code if anyone interests this improvement. -- Ingram Chen Java [EMAIL PROTECTED] Institue of BioMedical Sciences Academia Sinica Taiwan blog: 
http://www.javaworld.com.tw/roller/page/ingramchen---This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcastand join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user-- Ingram ChenJava [EMAIL PROTECTED]
Institue of BioMedical Sciences Academia Sinica Taiwanblog: http://www.javaworld.com.tw/roller/page/ingramchen


FormTester.iAmZip
Description: Binary data


[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 value in  ListMultipleChoice ie previous plus current.

wating for reply


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 also contains some minor
 things:

 (1) change scope constructor of FormTester from default to protected for
 better extensibility.

 (2) fix bugs about fillBlankString in constructor and add a method
 submit(buttonPath) for the issue discuss on
 http://sourceforge.net/mailarchive/forum.php?thread_id=10171730forum_id=42411

 Hope these can be incorporated into next release too.


 On 4/14/06, Juergen Donnerstag [EMAIL PROTECTED]  wrote:
 
 sure, everything that makes life easier and doesn't break existing
  code is welcome. Send it to me.

 Juergen

 On 4/14/06, Ingram Chen [EMAIL PROTECTED] wrote:
  Currently FormTester only does raw String on request parameters.
  As http://www.wicket-wiki.org.uk/wiki/index.php/Testing
  states, selecting
  value from Component such as RadioGroup, DropDownChoice... etc is pain:
 
  form.setValue(offSiteAccessEnabled,
 0:form:offSiteAccessEnabled:Yes);
  In my team we define a new method like:
 
  select(String path, final int index)
 
  This simplified selection to just an index. The method supports built-in
  component:
  AbstractChoice, RadioGroup, and CheckGroup but the implementation rely on
  reflection heavily.
 
   Further, it may require addtional methods such as:
 
   selectMulti(String path, final int[] indexes)  //for ListMultiChoice
  and CheckGroup
 
  Though I'm not sure that just invoking select() multiple times is better.
 
  I could donate the code if anyone interests this improvement.
 
  --
  Ingram Chen
  Java [EMAIL PROTECTED]
  Institue of BioMedical Sciences Academia Sinica Taiwan
  blog: http://www.javaworld.com.tw/roller/page/ingramchen


 ---
 This SF.Net email is sponsored by xPML, a groundbreaking scripting language
 that extends applications into web and mobile media. Attend the live webcast
 and join the prime developer group breaking into this new coding territory!
 http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



 --

 Ingram Chen
 Java [EMAIL PROTECTED]
 Institue of BioMedical Sciences Academia Sinica Taiwan
 blog: http://www.javaworld.com.tw/roller/page/ingramchen



---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 it. Thanks


Juergen

On 4/15/06, Michael Day [EMAIL PROTECTED] wrote:

In my markup, I have added a RequiredTextField component called
message.  I also use the wicket:message tag.  Wicket seems to  
get

them confused.  Is this a bug?

wicket.markup.MarkupException: Component message must be applied  
to a

tag of type 'input', not 'wicket:message key=phone' (line 0,
column 0)


---
This SF.Net email is sponsored by xPML, a groundbreaking  
scripting language
that extends applications into web and mobile media. Attend the  
live webcast
and join the prime developer group breaking into this new coding  
territory!
http://sel.as-us.falkag.net/sel? 
cmd=lnkkid=110944bid=241720dat=121642

___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user






---
This SF.Net email is sponsored by xPML, a groundbreaking scripting  
language
that extends applications into web and mobile media. Attend the  
live webcast
and join the prime developer group breaking into this new coding  
territory!

http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user






---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 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:
  In my markup, I have added a RequiredTextField component called
  message.  I also use the wicket:message tag.  Wicket seems to
  get
  them confused.  Is this a bug?
 
  wicket.markup.MarkupException: Component message must be applied
  to a
  tag of type 'input', not 'wicket:message key=phone' (line 0,
  column 0)
 
 
  ---
  This SF.Net email is sponsored by xPML, a groundbreaking
  scripting language
  that extends applications into web and mobile media. Attend the
  live webcast
  and join the prime developer group breaking into this new coding
  territory!
  http://sel.as-us.falkag.net/sel?
  cmd=lnkkid=110944bid=241720dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 
 
  ---
  This SF.Net email is sponsored by xPML, a groundbreaking scripting
  language
  that extends applications into web and mobile media. Attend the
  live webcast
  and join the prime developer group breaking into this new coding
  territory!
  http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 



 ---
 This SF.Net email is sponsored by xPML, a groundbreaking scripting language
 that extends applications into web and mobile media. Attend the live webcast
 and join the prime developer group breaking into this new coding territory!
 http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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: Component phone must be applied to a  
tag with 'type' attribute matching 'text', not 'null'


Thanks,
Michael Day


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 constructos to call setRequired(true)So if anybody overrides a textfield the type check is gone. this is a bit wrong.
can you add a bug for this?johanOn 4/15/06, Michael Day [EMAIL PROTECTED] wrote:
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 thetype=text attribute to the input
wicket.markup.MarkupException: Component phone must be applied to atag with 'type' attribute matching 'text', not 'null'Thanks,Michael Day---
This SF.Net email is sponsored by xPML, a groundbreaking scripting languagethat extends applications into web and mobile media. Attend the live webcastand join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user



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)
{
// 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 constructos to call setRequired(true)

So if anybody overrides a textfield the type check is gone. this is  
a bit wrong.

can you add a bug for this?

johan


On 4/15/06, Michael Day [EMAIL PROTECTED] wrote: 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: Component phone must be applied to a
tag with 'type' attribute matching 'text', not 'null'

Thanks,
Michael Day


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting  
language
that extends applications into web and mobile media. Attend the  
live webcast
and join the prime developer group breaking into this new coding  
territory!
http://sel.as-us.falkag.net/sel? 
cmd=lnkkid=110944bid=241720dat=121642

___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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 the regular rules apply in regards to J2EE Web app experience (5+), agile methodologies etc. 
Thanks,Matt


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 SimpleAttributeModifier works.public class MyFeedbackPanel extends FeedbackPanel { public MyFeedbackPanel() { super(feedback);
 add(new SimpleAttributeModifier(class, feedback) { protected boolean isEnabled() { return !getPage().getFeedbackMessages().isEmpty(); }
 }); } protected void onAttach() { info(test this); }}Is this a bug?Regards,AlexAm 15.04.2006 um 10:23 schrieb 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. johan
 On 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 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 can a component add feedback-messages the first time he is  displayed?   - I cannot add feedback inside the constructor, because the
 page is  not yet known.  - I cannot override setParent, to find out when a page is given.  - and later inside the process: see below   Thanks for any help.
   Am 14.04.2006 um 17:36 schrieb Alexander Lohse:Hi, is there any automatic-pre-render-method-invocation I can use to   check conditions and add feedback?
 I tried onBeforeRender(). This seems to be to late to modify  content?! I tried onAttach(). Here I have a strange phenomenon: The new
   feedback is not displayed, but I have an SimpleAttributeModifier   that checks against: getPage().getFeedbackMessages().isEmpty() and   this hits. Thank you for any help.
 Alex ---   This 
SF.Net email is sponsored by xPML, a groundbreaking scripting   language   that extends applications into web and mobile media. Attend the   live webcast   and join the prime developer group breaking into this new coding
   territory!   http://sel.as-us.falkag.net/sel?   cmd=lnkkid=110944bid=241720dat=121642   ___
   Wicket-user mailing list   Wicket-user@lists.sourceforge.net   
https://lists.sourceforge.net/lists/listinfo/wicket-user   –––  Alexander Lohse  (Entwicklungsleitung  Projektmanagement) 
  Human Touch Medienproduktion GmbH  Am See 1  17440 Klein Jasedow  Deutschland   Tel: +49 38374 752 11  Fax: +49 38374 752 23  e-mail: 
[EMAIL PROTECTED]  Internet: http://www.webjazz.de  –––   
   ---  This SF.Net email is sponsored by xPML, a groundbreaking scripting  language  that extends applications into web and mobile media. Attend the
  live webcast  and join the prime developer group breaking into this new coding  territory!  
http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642  ___  Wicket-user mailing list  
Wicket-user@lists.sourceforge.net  https://lists.sourceforge.net/lists/listinfo/wicket-user  –––
 Alexander Lohse (Entwicklungsleitung  Projektmanagement) Human Touch Medienproduktion GmbH Am See 1 17440 Klein Jasedow Deutschland Tel: +49 38374 752 11
 Fax: +49 38374 752 23 e-mail: [EMAIL PROTECTED] Internet: http://www.webjazz.de –––
 --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the
 live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642
 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/wicket-user–––---This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcastand join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user