mysticfall / pivot4j

Pivot4J provides a common API for OLAP servers which can be used to build an analytical service frontend with pivot style GUI.
Other
128 stars 101 forks source link

DrillThrough does not work #69

Closed becky825 closed 11 years ago

becky825 commented 11 years ago

i see the code Explanation about DrillThrough /* * Workaround to implement lazy rendering due to limitation in Olap4J's API * : * * @see http://sourceforge.net/p/olap4j/bugs/15/ / class DrillThroughCommandImpl extends BasicDrillThroughCommand {

public ResultSet execute(PivotModel model, CellParameters parameters) { ....... return null; } }

so i change the code “return cell.drillThrough()” but it do not work. How to achieve the code , i want to see the drillThrough grid。

Thanks

mysticfall commented 11 years ago

@becky825 Actually it has nothing to do with the handler code and was caused by my mistake in changing 'dymaic' attribute of the drillthrough dialog.

It is now working as before. But as you might already know, it has very limited functionality for now because of the limitation mentioned in the comment you quoted.

Initially I didn't want to implement it using an workaround as I thought it'd better to use only straightfoward and intuitive code in the sample application. However, as now it is not just a sample anymore, I'm planning to implement it in anyway I can.

FYI, It's been tracked as a separate issue report as #3.

Thanks much for the report!