UNPKG

chrome-devtools-frontend

Version:
28 lines (22 loc) 1.21 kB
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import * as FrontendHelpers from '../../../test/unittests/front_end/helpers/EnvironmentHelpers.js'; import * as ComponentHelpers from '../../component_helpers/component_helpers.js'; import * as Components from '../../ui/components/components.js'; await ComponentHelpers.ComponentServerSetup.setup(); await FrontendHelpers.initializeGlobalVars(); const component = new Components.DataGrid.DataGrid(); component.data = { columns: [ {id: 'key', title: 'Key', widthWeighting: 1, visible: true, hideable: false, sortable: true}, {id: 'value', title: 'Value', widthWeighting: 1, visible: true, hideable: true}, ], rows: [ {cells: [{columnId: 'key', value: 'Bravo', title: 'Bravo'}, {columnId: 'value', value: 'Letter B'}]}, {cells: [{columnId: 'key', value: 'Alpha', title: 'Alpha'}, {columnId: 'value', value: 'Letter A'}]}, {cells: [{columnId: 'key', value: 'Charlie', title: 'Charlie'}, {columnId: 'value', value: 'Letter C'}]}, ], activeSort: null, }; document.getElementById('container')?.appendChild(component);