Browse Source

Add tooltips to dynamic table header

adaptive-webui-19844
buinsky 8 years ago
parent
commit
c765d8ebe2
  1. 1
      src/webui/www/public/scripts/dynamicTable.js

1
src/webui/www/public/scripts/dynamicTable.js

@ -168,6 +168,7 @@ var DynamicTable = new Class({ @@ -168,6 +168,7 @@ var DynamicTable = new Class({
th = ths[i];
th._this = this;
th.setAttribute('onclick', this.columns[i].onclick);
th.setAttribute('title', this.columns[i].caption);
th.innerHTML = this.columns[i].caption;
th.setAttribute('style', this.columns[i].style);
if ((this.columns[i].visible == '0') || this.columns[i].force_hide)

Loading…
Cancel
Save