我正在使用材料表https://github.com/mbrn/material-table,我的问题是
在编辑单元格时如何验证日期[有效-无效]?
我的代码:
{ title: 'Active', field: 'active', type: "date"},
{ title: 'Inactive', field: 'inactive', type: "date",
editComponent: props => (
<input
type="date"
value={props.value}
onChange={e => props.onChange(e.target.value)}
min={props.rowData.active}
InputProps={{inputProps: {min: props.rowData.active}}}
/>)},
我正在使用此代码,但没有用,仍然允许我在激活之前选择非激活日期。我输入min(active),有人对如何解决此问题有任何想法吗?谢谢