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

Juergen Donnerstag resolved WICKET-1206.
----------------------------------------

       Resolution: Fixed
    Fix Version/s:     (was: 1.5-M1)
                   1.4-RC2
         Assignee: Juergen Donnerstag  (was: Frank Bille Jensen)

applied. Thanks

> 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: Juergen Donnerstag
>            Priority: Minor
>             Fix For: 1.4-RC2
>
>         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.

Reply via email to