I have a page that uses a DataView to display a 'search results' page. 
Within each line I need to have a collapsible box that displays more
information about the search result.

I created a Border object that collapses fine (based off an example from
_Pro Wicket_) when in a simple example, but when it's within the DataView
wicket complains that the Border control can't be found
(wicket.markup.MarkupException: Unable to find component with id
'collapsibleBorder' ).

Can a Border be used within a DataView?  I tried the Border to both the page
and the DataView and neither works.  If this won't work is there another
way?

The DataView works fine alone, and the Border works fine alone.  It's only
when the Border is part of the DataView that I run into issues.

My HTML looks similar to this:
<table border="1">
        <tr wicket:id="searchResults">
                <td>
                <table>
                        <tr>
                                <td>More info:</td>
                                <td>
                                    
                                    <!-- moreInfo is returned by the
DataView -->
                                    [More Info]
                                    
                               </td>
                        </tr>
                </table>
                </td>
        </tr>
</table>
-- 
View this message in context: 
http://www.nabble.com/Border-within-a-DataView-tf4530616.html#a12928907
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to