You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Sven Meier (Jira)" <ji...@apache.org> on 2020/08/22 20:41:00 UTC

[jira] [Resolved] (WICKET-6819) DataTable Places toolbars outside of the table

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

Sven Meier resolved WICKET-6819.
--------------------------------
      Assignee: Sven Meier
    Resolution: Invalid

Take a look at your browser's network tab: the markup is rendered correctly, but the browser reshuffles the tags since a <tfoot> has to contain a <tr> and <td>.

Your toolbar markup is missing these:
{code:java}
<tr>
  <td>
    <button id="newButon" value="New Button" type="button">My Button</button>
  </td>
</tr>{code}

> DataTable Places toolbars outside of the table
> ----------------------------------------------
>
>                 Key: WICKET-6819
>                 URL: https://issues.apache.org/jira/browse/WICKET-6819
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 9.0.0
>         Environment: Os: Fedora 31 
> IDE: Netbeans 12 on Java 11.
> Wicket 9.0.0
>            Reporter: Cedric Pemberton
>            Assignee: Sven Meier
>            Priority: Blocker
>         Attachments: ButtonToolbar.html, ButtonToolbar.java, HomePage.html, HomePage.java, ListUsers.html, ListUsers.java, Person.java, WicketApplication.java, renderedOutput.html
>
>
> Wicket-extensions DataTable renders the toolbars completely outside the table.  The toolbar containers are ignored.   
> Included is the output at the browser and all the files in the quickstart project used to duplicate.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)