使用带有AutoSizer的react-virtualized MultiGrid,是否有办法动态地从数据集中省略一列?我基本上复制了示例,并设置了_cellRenderer
以在某种条件下跳过一列,但是看起来该列仍在代码中:
_cellRenderer({columnIndex, key, rowIndex, style}) {
let retVal = '';
if(rowIndex === 1 && columnIndex === 5){
retVal = null;
} else {
retVal = (<div className={styles.Cell} key={key} style={style}>
{columnIndex}, {rowIndex}
</div>)
}
return (retVal);
}