Lines Matching refs:TH

24873         this.update('columnHeaders', [function (column, TH) {  argument
24874 (0, _element.fastInnerText)(TH, originalHeaders[column]);
28241 value: function renderRowHeader(row, col, TH) {
28242 TH.className = '';
28243 TH.removeAttribute('style');
28244 this.rowHeaders[col](row, TH, col);
28255 …for (var TH = TR.firstChild, visibleColIndex = 0; visibleColIndex < this.rowHeaderCount; visibleCo…
28257 if (!TH) {
28258 TH = document.createElement('TH');
28259 TR.appendChild(TH);
28260 } else if (TH.nodeName == 'TD') {
28261 TH = replaceTdWithTh(TH, TR);
28263 this.renderRowHeader(row, visibleColIndex, TH);
28265 TH = TH.nextSibling;
28386 value: function renderColumnHeader(row, col, TH) {
28387 TH.className = '';
28388 TH.removeAttribute('style');
28390 return this.columnHeaders[row](col, TH, row);
28435 var TH = document.createElement('TH');
28437 TR.insertBefore(TH, TD);
28440 return TH;
28443 function replaceThWithTd(TH, TR) {
28446 TR.insertBefore(TD, TH);
28447 TR.removeChild(TH);
28746 var TH = this.instance.wtTable.TABLE.querySelector('TH');
28750 if (TH) {
28751 this.rowHeaderWidth += (0, _element.outerWidth)(TH);
28752 TH = TH.nextSibling;
32951 TH = void 0;
32957 TH = wotInstance.wtTable.getColumnHeader(sourceCol);
32959 if (TH) {
32970 (0, _element.addClass)(TH, newClasses);
32979 TH = wotInstance.wtTable.getRowHeader(sourceRow);
32981 if (TH) {
32992 (0, _element.addClass)(TH, _newClasses);
43878 value: function setupHandlePosition(TH) {
43881 if (!TH.parentNode) {
43885 this.currentTH = TH;
43887 var col = this.hot.view.wt.wtTable.getCoords(TH).col; // getCoords returns CellCoords
45694 value: function setupHandlePosition(TH) {
45697 this.currentTH = TH;
45698 var row = this.hot.view.wt.wtTable.getCoords(TH).row; // getCoords returns CellCoords
48258 headerRenderers.push(function (row, TH) { argument
48259 that.appendRowHeader(row, TH);
48270 headerRenderers.push(function (column, TH) { argument
48271 that.appendColHeader(column, TH);
48689 TableView.prototype.appendRowHeader = function (row, TH) {
48690 if (TH.firstChild) {
48691 var container = TH.firstChild;
48694 (0, _element.empty)(TH);
48695 this.appendRowHeader(row, TH);
48709 TH.appendChild(div);
48712 this.instance.runHooks('afterGetRowHeader', row, TH);
48720 TableView.prototype.appendColHeader = function (col, TH) {
48721 if (TH.firstChild) {
48722 var container = TH.firstChild;
48727 (0, _element.empty)(TH);
48728 this.appendColHeader(col, TH);
48739 TH.appendChild(div);
48742 this.instance.runHooks('afterGetColHeader', col, TH);