Web sockets support clarification

2017-03-17 Thread Wayne W
Hi, we are currently using Wicket 6.17 and use a version of Atmosphere jar libraries (not the wicket version). Its never been great and have had lots of production issues with it. I'm looking to replace it with straight web sockets as the fall back long polling etc we never could get to work.

Re: ListView color background lineitem dinamically not working

2017-03-17 Thread ganea iulia
Thank you, it's great! On Thu, Mar 16, 2017 at 1:05 PM, Sven Meier wrote: > Hi, > > you'll have to add two MarkupContainers and style both : > > > > ... > ... > > > protected void populateItem(ListItem item) { > WebMarkupContainer firstRow = new

Re: Dynamic datatable columns (sequel)

2017-03-17 Thread Sven Meier
Hi, you can just pass an empty collection of columns to dataTable: private List> columns = new ArrayList<>(); public DataTablePage() { DataTable dataTable = new DefaultDataTable<>("table", columns, dataProvider, 8); add();

Re: Dynamic datatable columns (sequel)

2017-03-17 Thread James Selvakumar
Hi Sven, I'm a bit clueless about this. Could you share a little code example to help me? Thanks. On Thu, Mar 16, 2017 at 5:03 PM, James Selvakumar wrote: > Hi Sven, > > Thanks for the info. Will try that out. > > On Thu, Mar 16, 2017 at 4:20 PM, Sven Meier