You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Frank Bille Jensen (JIRA)" <ji...@apache.org> on 2008/03/25 22:41:24 UTC

[jira] Updated: (WICKET-1206) Change BaseWicketTester.getTagByXXX return value from TagTester to TagTester[]

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

Frank Bille Jensen updated WICKET-1206:
---------------------------------------

    Fix Version/s:     (was: 1.4-M1)
                   1.5-M1

> Change BaseWicketTester.getTagByXXX return value from TagTester to TagTester[]
> ------------------------------------------------------------------------------
>
>                 Key: WICKET-1206
>                 URL: https://issues.apache.org/jira/browse/WICKET-1206
>             Project: Wicket
>          Issue Type: Improvement
>          Components: wicket
>    Affects Versions: 1.3.0-rc1
>            Reporter: Craig McIlwee
>            Assignee: Frank Bille Jensen
>            Priority: Minor
>             Fix For: 1.5-M1
>
>         Attachments: MultipleTagTester.java
>
>
> When using the org.apache.wicket.markup.repeater.data.DataView, each row in the table has the same wicket:id.  I am trying to use the TagTester to ensure that each <tr> tag has the correct attributes, in this case class="odd" and class="even".  Since getTagByWicketId and getTagById only return a single TagTester, a tester for the same markup tag is returned each time, making it impossible to test any row other than the first.
> Example HTML output:
> <table>
> 	<tr class="even" wicket:id="table">   <--------- TagTester returned is always for this tag
> 	</tr>
>         <tr class="odd" wicket:id="table">
> 	</tr>
>         <tr class="even" wicket:id="table">
> 	</tr>
>         <tr class="odd" wicket:id="table">
> 	</tr>
>         <tr class="even" wicket:id="table">
> 	</tr>
> </table>
> Proposed solution:  change the return value to TagTester[] so that one call will return all of the tags with that wicket:id

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