File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
zeppelin-web/src/app/notebook/paragraph Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -941,6 +941,17 @@ angular.module('zeppelinWebApp')
941941
942942 var renderTable = function ( ) {
943943 var html = '' ;
944+
945+ html += '<table class="table table-hover table-condensed" style="position: absolute;">' ;
946+ html += ' <thead>' ;
947+ html += ' <tr style="background-color: #F6F6F6; font-weight: bold;">' ;
948+ for ( var c in $scope . paragraph . result . columnNames ) {
949+ html += '<th>' + $scope . paragraph . result . columnNames [ c ] . name + '</th>' ;
950+ }
951+ html += ' </tr>' ;
952+ html += ' </thead>' ;
953+ html += '</table>' ;
954+
944955 html += '<table class="table table-hover table-condensed">' ;
945956 html += ' <thead>' ;
946957 html += ' <tr style="background-color: #F6F6F6; font-weight: bold;">' ;
You can’t perform that action at this time.
0 commit comments