Home | History | Annotate | Download | only in profiler

Lines Matching refs:dataGrid

40     columns.push({id: "self", title: WebInspector.UIString("Self"), width: "120px", sort: WebInspector.DataGrid.Order.Descending, sortable: true});
44 this.dataGrid = new WebInspector.DataGrid(columns);
45 this.dataGrid.addEventListener(WebInspector.DataGrid.Events.SortingChanged, this._sortProfile, this);
46 this.dataGrid.show(this.element);
142 var selectedProfileNode = this.dataGrid.selectedNode ? this.dataGrid.selectedNode.profileNode : null;
144 this.dataGrid.rootNode().removeChildren();
150 this.dataGrid.rootNode().appendChild(children[index]);
158 var child = this.dataGrid.rootNode().children[0];
393 this.dataGrid.detach();
414 this.dataGrid.show(this.element);
428 if (!this.dataGrid.selectedNode)
432 this.profileDataGridTree.focus(this.dataGrid.selectedNode);
439 var selectedNode = this.dataGrid.selectedNode
475 var sortAscending = this.dataGrid.isSortOrderAscending();
476 var sortColumnIdentifier = this.dataGrid.sortColumnIdentifier();