0

实际上,我在 reactjs 中工作。导入了 npm react-data-grid,因为我在列中使用 AutoCompleteEditor 来选择列出的值。它之前工作正常,现在在 Firefox 等中工作。现在,我不确定 Chrome 是否已更新,AutoCompleteEditor 列表未显示在 react-data-grid 表中。知道为什么不显示吗?先感谢您!!

4

1 回答 1

0

我正在使用 chrome/safari 和 AutoCompleteEditor 工作正常。

设置选项

const commonDuration = [
  { id: 0, title: '0:15' }, { id: 1, title: '0:30' }, { id: 2, title: '0:45' },
  { id: 3, title: '1:00' }, { id: 4, title: '1:30' }, { id: 5, title: '2:00' }
];

在列中

editor: <AutoCompleteEditor options={commonDuration} />
于 2019-05-01T23:12:32.893 回答