Lines Matching full:dom
114 this.dom = { property in anonymousFunctionbd7b521a0500.FixedHeader
133 this.dom.header.host = this.dom.thead.parent();
134 this.dom.footer.host = this.dom.tfoot.parent();
160 var dom = this.dom;
166 if (dom.header.rightBlocker) {
167 dom.header.rightBlocker.remove();
169 if (dom.header.leftBlocker) {
170 dom.header.leftBlocker.remove();
172 if (dom.footer.rightBlocker) {
173 dom.footer.rightBlocker.remove();
175 if (dom.footer.leftBlocker) {
176 dom.footer.leftBlocker.remove();
183 if (this.c.footer && dom.tfoot.length) {
340 var itemDom = this.dom[item];
341 var itemElement = item === 'header' ? this.dom.thead : this.dom.tfoot;
505 var el = this.dom[item].floating;
527 var itemDom = this.dom[item];
560 var itemDom = this.dom[item];
588 var tablePart = this.dom[item === 'footer' ? 'tfoot' : 'thead'];
721 var dom = this.dom;
730 var tbody = dom.tbody;
816 this.dom.header.floatingParent === undefined
821 this.dom.header.floatingParent
826 .append(this.dom.header.floating);
850 if (this.c.footer && this.dom.tfoot.length) {
884 header = this.dom.header.floating
885 ? getOffsetHeight(this.dom.header.floating)
886 : getOffsetHeight(this.dom.thead);
887 footer = this.dom.footer.floating
888 ? getOffsetHeight(this.dom.footer.floating)
889 : getOffsetHeight(this.dom.tfoot);
923 $(this.dom.tfoot.parent()).addClass('fixedHeader-floating');
927 $(this.dom.tfoot.parent()).removeClass('fixedHeader-floating');
932 if (this.dom.header.floating) {
933 this.dom.header.floatingParent.css('left', bodyLeft - windowLeft);
935 if (this.dom.footer.floating) {
936 this.dom.footer.floatingParent.css('left', bodyLeft - windowLeft);
966 this.dom.header.rightBlocker = adjustBlocker(
969 this.dom.header.rightBlocker
971 this.dom.header.leftBlocker = adjustBlocker('left', 'top', this.dom.header.leftBlocker);
972 this.dom.footer.rightBlocker = adjustBlocker(
975 this.dom.footer.rightBlocker
977 this.dom.footer.leftBlocker = adjustBlocker(
980 this.dom.footer.leftBlocker