Hi,
I need to add buttons to the column headers of an olapdatagrid so
that i can implement sorting (which is ORDER in MDX). My problem is
that I cannot figure out how to do it for the right headers.
In the OLAP grid there is a header for the level/dimension then a
another series of column headers for members. I know how to
manipulate the first, top-most headers:
public class PivotOLAPGrid extends OLAPDataGrid
{
public function PivotOLAPGrid():void
{
super();
//super.headerRenderer=new
ClassFactory(com.ignite.olap.grid.CheckboxHeaderRenderer);
}
But i cannot figure out how do the same for the second level column
headers. Any clues or insight?