AG网格不会复制网格上显示的格式化数据。
AG网格不会复制网格上显示的格式化数据。相反,将从API接收的数据进行复制。 例如,在单元格中显示的数据为“否”,但在单元格中绑定的数据为“ False”。因此,“ False”被复制。另外,DateTime将被复制,而不仅仅是格式化的短日期。
{
headerName: 'To Date', field: 'endDate', width: 150, menuTabs:[],unSortIcon: true, cellClass: "dateType", cellRenderer:
(data) => {
return moment(data.value).format('DD.MM.YYYY');
} }