You've two possibilities to pass parameters
a) <tag id="wicket-xxx" key="value">  which does not meet HTML DTD
b) <tag id="wicket-xxx">
         <wicket:param key="value"/>
         <wicket:param key2=value2/>
    </tag>

   <tag id="wicket-xxx"/> <!-- you the open-close tag -->
         <wicket:param key="value"/>

   should work as well.

All parameters will go into the attributes map accessible by the
component. No setter/getter is called (yet).


>      Secondly, I assume that the model object is my component object
>i.e. RoundCornerPanel) unless I explicitly call setModel() and apply
>it to another object. Is this correct?

Not sure what you mean. Thinking about a Label the model will most
likely be a String like "This is my Label". Using Model or
PropertyModel you have very flexible and dynamic means to retrieve the
label's text. But the Label itself is not the model.

Juergen
    


On Wed, 05 Jan 2005 01:10:32 +0100, Eelco Hillenius
<[EMAIL PROTECTED]> wrote:
> I don't know. This is a mailing list, not a chat room :)
> 
> Eelco
> 
> Gili wrote:
> 
> >       No one replied to this question. Does no one know? Is Juergen
> >the only one that knows? Is he away?
> >
> >Thanks,
> >Gili
> >
> >
> >
> 
> -------------------------------------------------------
> The SF.Net email is sponsored by: Beat the post-holiday blues
> Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
> It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
> _______________________________________________
> Wicket-develop mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
>


-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
_______________________________________________
Wicket-develop mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-develop

Reply via email to