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/03/29 21:41:25 UTC

[jira] Reopened: (WICKET-11) Add as tag place holder to make template validated

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

Igor Vaynberg reopened WICKET-11:
---------------------------------

      Assignee: Igor Vaynberg

> Add <wicket:tagholder> as tag place holder to make template validated
> ---------------------------------------------------------------------
>
>                 Key: WICKET-11
>                 URL: https://issues.apache.org/jira/browse/WICKET-11
>             Project: Wicket
>          Issue Type: New Feature
>          Components: wicket
>    Affects Versions: 1.2.3
>            Reporter: Ingram Chen
>         Assigned To: Igor Vaynberg
>             Fix For: 1.3
>
>
> I occasionally encounter a problem, for example, a template like:
> <tr>
>     <span wicket:id="groupAB">
>        <td>field A</td>
>        <td>field B</td>
>     </span>
>     <td>field C</td>
> </tr>
> groupAB is just functional group and will always setRenderBodyOnly(true), so rendered page will be validated.
> But the problem is the template is not validated... Is it possible to create a psuedo tag like:
> <tr>
>     <wicket:pseudo wicket:id="groupAB">
>        <td>field A</td>
>        <td>field B</td>
>     </wicket:pseudo>
>     <td>field C</td>
> </tr>
> or something like <wicket:tagholder>. Such tag does nothing and always render body only.
> By separating namespace, it makes template clean and validated.

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