Re: [Wicket-user] Question about XML processing in wicket

2006-11-26 Thread Carfield Yim
I guess you talking about http://wicket.sourceforge.net/apidocs/wicket/markup/transformer/XsltTransfomerBehavior.html#onComponentTag(wicket.Component, wicket.markup.ComponentTag) , it would be great if there is more examples about this. On 11/25/06, Matej Knopp [EMAIL PROTECTED] wrote: Can't you

Re: [Wicket-user] Question about XML processing in wicket

2006-11-24 Thread Carfield Yim
On 11/24/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: And what do want to achieve? What is the input markup and what your expected output markup? Say XML like body tag1value1/tag1 tag2value2/tag2 /body Wicket template like html body Tag1 is wicket:xml wicket:id=body:tag1/wicket:xml

Re: [Wicket-user] Question about XML processing in wicket

2006-11-24 Thread Matej Knopp
Can't you just override the onComponentTag method and modify the tag the way you need? -Matej Carfield Yim wrote: On 11/24/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: And what do want to achieve? What is the input markup and what your expected output markup? Say XML like body

Re: [Wicket-user] Question about XML processing in wicket

2006-11-23 Thread Juergen Donnerstag
And what do want to achieve? What is the input markup and what your expected output markup? Juergen On 11/24/06, Carfield Yim [EMAIL PROTECTED] wrote: Just wonder can I fill the wicket template directly from xml tag, say I have an xml like body tag1value1/tag1 tag2value2/tag2 /body