How to define a custom wicket tag

I could not find a wicket tag such as a wicket: turn on? Can anyone suggest me something? I want to include / paste the source in html files? If there is no such utility, any suggestions for its development?

Update I am looking for sth as jsp: include. this inclusion is expected on the server side.

+5
source share
2 answers

To do this, you will need to implement your own IComponentResolver .

This blog article article shows an example somewhat reminiscent of what you need.

+6
source

Is this the raw markup you want to include, or Wicket?

, Label . setEscapeModelStrings( false), . ( , XSS.)

"" ​​ Panel ( Fragment s)

. , , , "" , , JSP Wicket - , .

+3

All Articles