Home | History | Annotate | Download | only in front-end

Lines Matching refs:tbody

297         this._headerTableBody = this._headerTable.getElementsByTagName("tbody")[0];
299 this._headerTableBody = this.element.ownerDocument.createElement("tbody");
311 this._dataTableBody = this._dataTable.getElementsByTagName("tbody")[0];
313 this._dataTableBody = this.element.ownerDocument.createElement("tbody");
693 var tbody = this.dataTableBody;
694 var tbodyParent = tbody.parentElement;
695 tbodyParent.removeChild(tbody);
697 var childNodes = tbody.childNodes;
704 tbody.removeChildren();
712 tbody.appendChild(row);
718 tbody.appendChild(fillerRow);
719 tbodyParent.appendChild(tbody);