You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Igor Vaynberg (JIRA)" <ji...@apache.org> on 2007/04/11 21:18:32 UTC

[jira] Resolved: (WICKET-460) allow vanilla html alternatives to wicket namespaced tags such as wicket:extend

     [ https://issues.apache.org/jira/browse/WICKET-460?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Igor Vaynberg resolved WICKET-460.
----------------------------------

    Resolution: Fixed

these tags are now supported

<html>
<body>
<wicket:extend>
header
<wicket:child/>
footer
</wicket:extend>
</body>
</html>

now becomes

<html>
<body>
<div wicket:id=":extend">
header
<div wicket:id=":child"/>
footer
</div wicket:id=":extend">
</body>
</html>

notice the use of ":" as the first characater in wicket:id that acts as an escape character
notice that both open AND close tags need wicket:id attrs

> allow vanilla html alternatives to wicket namespaced tags such as wicket:extend
> -------------------------------------------------------------------------------
>
>                 Key: WICKET-460
>                 URL: https://issues.apache.org/jira/browse/WICKET-460
>             Project: Wicket
>          Issue Type: Improvement
>          Components: wicket
>            Reporter: Igor Vaynberg
>         Assigned To: Igor Vaynberg
>             Fix For: 1.3
>
>
> some people do not like special tags like wicket:extend and would prefer something like <div wicket:id=":extend"> instead

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.