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 ca20b0b commit 6ccc1ecCopy full SHA for 6ccc1ec
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "LightPivotTable",
3
"author": "ZitRo",
4
- "version": "1.4.9",
+ "version": "1.4.10",
5
"description": "A lightweight pivot table for MDX2JSON source for InterSystems Cache",
6
"main": "test/testServer.js",
7
"repository": {
source/js/PivotView.js
@@ -1133,6 +1133,9 @@ PivotView.prototype.renderRawData = function (data) {
1133
tr.appendChild(
1134
th = document.createElement(rawData[y][x].isCaption ? "th" : "td")
1135
);
1136
+ if (rawData[y][x].source && rawData[y][x].source.title) {
1137
+ th.setAttribute("title", rawData[y][x].source.title);
1138
+ }
1139
div = document.createElement("div");
1140
if (rawData[y][x].value) {
1141
div.textContent = rawData[y][x].value;
0 commit comments