Home | History | Annotate | Download | only in js

Lines Matching refs:table_

84   this.table_.list_.focus();
598 this.table_.dataModel = this.dataModel_;
599 this.table_.style.display = '';
602 this.currentList_ = this.table_;
608 this.table_.style.display = 'none';
609 this.table_.dataModel = this.emptyDataModel_;
671 this.table_ = this.dialogDom_.querySelector('.detail-table');
672 cr.ui.Table.decorate(this.table_);
674 this.table_.selectionModel = new this.selectionModelClass_();
675 this.table_.columnModel = new cr.ui.table.TableColumnModel(columns);
677 this.table_.addEventListener(
679 this.table_.selectionModel.addEventListener(
683 cr.ui.contextMenuHandler.addContextMenuProperty(this.table_);
684 this.table_.contextMenu = this.fileContextMenu_;
687 this.table_.addEventListener('mousedown',
726 this.table_.style.height = this.grid_.style.height =
728 this.table_.style.width = this.grid_.style.width =
731 this.table_.list_.style.width = this.table_.parentNode.clientWidth + 'px';
732 this.table_.list_.style.height = (this.table_.clientHeight - 1 -
733 this.table_.header_.clientHeight) + 'px';