Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Regarding cubegrid.

    Dear Administrator,
    The cubegrid extends listgrid, but the formatCellValue function which works on listgrid is not working on cubegrid. I observed some of the functions which will work on listgrid it is not working on cubegrid. Is this a limitation in cubegrid ?.

    I am able to handle facets and facetValues on cubegrid with methods that smartclient provided from API, but I am not able to capture the values in the cubegrid cells, that I will get based on the combination of rowfacets,columnfacets and fixedfacets. I need to develop the sum (aggregate function) based on these facets combination(rollupValue has to do, but not working now). When I used ListGrid.data it was giving all the data regardless of this combination of row,column,fixed facets.

    Please provide me an approach to develop the same.

    Thanks in Advance
    Kishore Kumar
    Last edited by kskishorekumar; 15 Apr 2009, 06:33.

    #2
    Hi Kishore,

    There is no need for the CubeGrid to support any APIs for you to do sums. You want to modify the data to add sums before the CubeGrid ever sees it. You can do this on the client-side in DataSource.transformResponse() - see the docs for that method for details.

    Comment

    Working...
    X