blob: e2315fa988a8a9ca29bb40232a3057dbb84e1b4b [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import { IconCellRendererComponent } from '@shared/components/cell-renderer/icon-cell-renderer/icon-cell-renderer.component';
export const COMMUNICATIONS_DATA_LIST_COLDEF = [
{
field: 'communicationTypeType',
colId: 'communicationTypeType',
headerName: 'CommunicationsData.CommunicationType',
sortable: true,
filter: true,
},
{
field: 'communicationData',
colId: 'communicationData',
headerName: 'CommunicationsData.CommunicationData',
sortable: true,
filter: true,
},
{
field: 'note',
colId: 'note',
headerName: 'CommunicationsData.Note',
sortable: true,
filter: true,
},
{
field: 'tools',
headerName: ' ',
pinned: 'right',
maxWidth: 110,
minWidth: 110,
lockPosition: true,
sortable: false,
filter: false,
suppressMenu: true,
suppressSizeToFit: true,
cellRendererFramework: IconCellRendererComponent,
},
];