File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " LightPivotTable" ,
33 "author" : " ZitRo" ,
4- "version" : " 1.4.9 " ,
4+ "version" : " 1.4.10 " ,
55 "description" : " A lightweight pivot table for MDX2JSON source for InterSystems Cache" ,
66 "main" : " test/testServer.js" ,
77 "repository" : {
Original file line number Diff line number Diff line change @@ -1133,6 +1133,9 @@ PivotView.prototype.renderRawData = function (data) {
11331133 tr . appendChild (
11341134 th = document . createElement ( rawData [ y ] [ x ] . isCaption ? "th" : "td" )
11351135 ) ;
1136+ if ( rawData [ y ] [ x ] . source && rawData [ y ] [ x ] . source . title ) {
1137+ th . setAttribute ( "title" , rawData [ y ] [ x ] . source . title ) ;
1138+ }
11361139 div = document . createElement ( "div" ) ;
11371140 if ( rawData [ y ] [ x ] . value ) {
11381141 div . textContent = rawData [ y ] [ x ] . value ;
You can’t perform that action at this time.
0 commit comments