Hello,
I am trying to made some facet not diplayed.
In fact i want to define :
When I display the grid, and potentially add one more facet after.
But I have try :
Or
It does'nt work, on first case I have just a blanck screen without error, and for the second a message error about empty object.
I need this dimension because when I made a drag and drop from an object not defined, the doesn't print the facet.
Regards
I am trying to made some facet not diplayed.
In fact i want to define :
Code:
cubeGrid.setColumnFacets("dim1", "dim2",); cubeGrid.setRowFacets("dim3");
But I have try :
Code:
cubeGrid.setFacet(new Facet("dim1"),new Facet("dim2"),new Facet("dim3"),new Facet("dim4")) cubeGrid.setColumnFacets("dim1", "dim2",); cubeGrid.setRowFacets("dim3");
Code:
cubeGrid.setColumnFacets("dim1", "dim2"); cubeGrid.setRowFacets("dim3"); cubeGrid.addFacet(new Facet("dim4"))
I need this dimension because when I made a drag and drop from an object not defined, the doesn't print the facet.
Regards
Comment