We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b46fea3 commit 0ddae51Copy full SHA for 0ddae51
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "LightPivotTable",
3
"author": "ZitRo",
4
- "version": "1.4.11",
+ "version": "1.4.12",
5
"description": "A lightweight pivot table for MDX2JSON source for InterSystems Cache",
6
"main": "test/testServer.js",
7
"repository": {
source/js/LightPivotTable.js
@@ -50,6 +50,11 @@ LightPivotTable.prototype.refresh = function () {
50
var _ = this,
51
i;
52
53
+ if (!this.dataSource.BASIC_MDX) {
54
+ console.log("Unable to refresh: no basic MDX set.");
55
+ return;
56
+ }
57
+
58
this.clearFilters();
59
if (this.CONFIG["defaultFilterSpecs"] instanceof Array) {
60
for (i in this.CONFIG["defaultFilterSpecs"]) {
0 commit comments