Hi K, If you want to hide the headers when the table is empty, you could use <wicket:enclosure> as suggested on the wicket guide <https://wicket.apache.org/guide/guide/single.html#keepControl_9> .
I have used the PagingPage from Wicket Examples (you can download it from Apache Wicket page) to illustrate this. I don't know how you check if the table is empty. I just went for dataView.getItemCount(). If you want the table with headers hidden, just call dataView.setVisible(false); And on HTML, use <wicket:enclosure>. Example: Note that on wicket:enclosure tag, I had to name the child it was referring to: pageable. Otherwise, it will throw an exception because wicket will not know which element you are referring to, in this case. Let me know if that works, Kind regards, Lucas -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Removing-table-coloumn-headers-in-wicket-pageablelistview-when-list-is-empty-tp4669246p4669328.html Sent from the Users forum mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
