Hi,
I'm not able to change FacetValue title on an advanced cubeGrid.
I tried way to do this, the only one which work was to recreate the cube.
I tried to redraw the cube, remove it from canvas re-add it, but nothing happend the displayed titles are always the same, they don't change.
Thx in advance for your help.
SmartClient Version: v8.3p_2013-01-28/PowerEdition Deployment (built 2013-01-28)
Chrome : Version 24.0.1312.56 Ubuntu 12.04 (24.0.1312.56-0ubuntu0.12.04.1)
I'm not able to change FacetValue title on an advanced cubeGrid.
I tried way to do this, the only one which work was to recreate the cube.
Code:
// Each facet of the cube grid (row or colum)
for (String facetId : facetIdList) {
// Get the facet corresponding to its Id.
Facet facet = cubeGrid.getFacet(facetId);
if (facet != null) {
// For each facet get facetvalues and change title
for (FacetValue facetValue : facet.getValues()) {
facetValue.setTitle("New title");
}
}
}
Thx in advance for your help.
SmartClient Version: v8.3p_2013-01-28/PowerEdition Deployment (built 2013-01-28)
Chrome : Version 24.0.1312.56 Ubuntu 12.04 (24.0.1312.56-0ubuntu0.12.04.1)
Comment