Re: removing table when the output list is empty in listview/dataview

2014-07-22 Thread K
Hi as suggested by you i tried adding on configure but it did not work... could you please look in to my code and suggest chandes My Java Code private static final long serialVersionUID = 1L; public static final Logger LOGGER = Logger

Re: removing table when the output list is empty in listview/dataview

2014-07-22 Thread K
Hi as suggested by you i tried adding on configure but it did not work... could you please look in to my code and suggest chandes My Java Code private static final long serialVersionUID = 1L; public static final Logger LOGGER = Logger

Re: removing table when the output list is empty in listview/dataview

2014-07-22 Thread K
Hi as suggested by you i tried adding on configure but it did not work... could you please look in to my code and suggest chandes My Java Code private static final long serialVersionUID = 1L; public static final Logger LOGGER = Logger

Re: removing table when the output list is empty in listview/dataview

2014-07-22 Thread K
My Mark up is html xmlns:wicket=http://wicket.apache.org; head meta http-equiv=Content-Type content=text/html; charset=ISO-8859-1 titleb Job Details/title link href=css/design.css type=text/css rel=stylesheet / /head body tablex class=header_tablex trx

Re: removing table when the output list is empty in listview/dataview

2014-07-22 Thread Martin Grigorov
Hi, On Tue, Jul 22, 2014 at 9:15 AM, K kondetiudayki...@gmail.com wrote: Hi as suggested by you i tried adding on configure but it did not work... could it did not work doesn't tell us what is the new problem try to provide more information you please look in to my code and suggest

Re: removing table when the output list is empty in listview/dataview

2014-07-22 Thread C.W.
Hey K I would recommend that you set the table invisible if you just don't want to display the table. 2014-07-22 8:15 GMT+02:00 K kondetiudayki...@gmail.com: Hi as suggested by you i tried adding on configure but it did not work... could you please look in to my code and suggest chandes

Re: removing table when the output list is empty in listview/dataview

2014-07-17 Thread Martin Grigorov
new DataView(...) { @Override public void onConfigure() { super.onConfigure(); setVisible(getDataProvider().size() 0); } } Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Jul 16, 2014 at 4:43 PM, K kondetiudayki...@gmail.com wrote: Hi I am displaying

removing table when the output list is empty in listview/dataview

2014-07-16 Thread K
Hi I am displaying list values using listview/dataview but the problem is that i dont know how to eliminate the heading part when my list is empty My Mark Up is body p