Hi, we have a list of search results which are displayed in a html table. One entry per row. To see more details of a result, an ajax link should trigger a rendering of a new table row (<tr>) directly beneath the selected entry. In a first approach we rendered a hidden table row (with wicket:id) which should be filled with the details. Currently we try to replace the table row e.g. with a method call to replaceWith of Component. We succeeded in displaying the content, but the tablerow wasn’t replaced. Instead a new one was created (without a markupid). So there is the problem that we have an empty and hidden tablerow and a new tablerow which can’t be removed dynamically afterwards.
Is there a best practice how this issue could be solved? Regards Thorsten
