File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " LightPivotTable" ,
3
3
"author" : " ZitRo" ,
4
- "version" : " 1.6.0 " ,
4
+ "version" : " 1.6.1 " ,
5
5
"description" : " A lightweight pivot table for MDX2JSON source for InterSystems Cache" ,
6
6
"main" : " test/testServer.js" ,
7
7
"repository" : {
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ lp.updateSizes(); // recalculate pivot sizes
96
96
lp .changeBasicMDX (" ..." ); // change mdx for LPT
97
97
lp .getActualMDX (); // returns currently displayed MDX
98
98
lp .getSelectedRows (); // returns array with selected rows indexes. First row have index 1.
99
- lp .attachTrigger (" contentRendered" , function (lpInstance ) { }); // attaches trigger during runtime
99
+ lp .attachTrigger (" contentRendered" , function (lptInstance ) { }); // attaches trigger during runtime
100
100
lp .setRowCount (5 ); // sets the number of rows to display
101
101
102
102
// Additional calls:
Original file line number Diff line number Diff line change @@ -1574,7 +1574,7 @@ PivotView.prototype.renderRawData = function (data) {
1574
1574
}
1575
1575
1576
1576
if ( typeof this . controller . CONFIG . triggers . contentRendered === "function" ) {
1577
- this . controller . CONFIG . triggers . contentRendered ( ) ;
1577
+ this . controller . CONFIG . triggers . contentRendered ( this . controller ) ;
1578
1578
}
1579
1579
1580
1580
} ;
You can’t perform that action at this time.
0 commit comments