Dynamic columns with List<List> in <p:dataTable><p:columns>
I'm attempting to generate a dataTable with columns dinamycally, so I've a List<List> when a List inside of a List is the content of my column, but when I try to show it I can't display not much. So, this is the code of my Bean: @ManagedBean @javax.faces.bean.ViewScoped public class Controlador { private List<List> estadistico; @PostConstruct public void inicializar(){ this.estadistico = new ArrayList<List>(); this.estadistico.add( Arrays.asList( new Integer[]{0,1,24})); this.estadistico.add( Arrays.asList( new Integer[]{5,1,34})); this.estadistico.add( Arrays.asList( new Integer[]{12,1,4}));