如何在编辑单元格内使用 AG-Grids agDateInput
How to use AG-Grids agDateInput inside editing cell
是否可以在如下所示的编辑单元格中使用 AG-Grids agDateInput 组件?
无论我如何尝试,它要么不呈现任何内容,要么呈现 Datepicker 但不保存它的选定值。
const exampleDates = ["2020/01/01", "2020/10/11"]
const colDef = {
field: "receiptDate",
headerName: "Receipt Date",
cellEditor: "agDateInput",
editable: true
}
const gridOptions = {
columnDefs: columnDefs,
rowData: exampleDates,
defaultColDef: {
editable: true,
sortable: true,
flex: 1,
minWidth: 100,
filter: true,
resizable: true
}
是否可以在如下所示的编辑单元格中使用 AG-Grids agDateInput 组件?
无论我如何尝试,它要么不呈现任何内容,要么呈现 Datepicker 但不保存它的选定值。
const exampleDates = ["2020/01/01", "2020/10/11"]
const colDef = {
field: "receiptDate",
headerName: "Receipt Date",
cellEditor: "agDateInput",
editable: true
}
const gridOptions = {
columnDefs: columnDefs,
rowData: exampleDates,
defaultColDef: {
editable: true,
sortable: true,
flex: 1,
minWidth: 100,
filter: true,
resizable: true
}