cascader
cascader copied to clipboard
cascade select in one box
![Uploading 166742179...]()
In the example, we use `,` (comma) for values, can we change it to `/` as AntDesign do?
如下代码,当展开下拉菜单时将导致自动滚动到顶部,原因是调用scrollIntoParentView时,下拉菜单尚未完成渲染,导致自动滚动到顶部。希望在props中增加对scroll的控制。 ```tsx const Cascader: FC = (props) => { const rolePropOptions = useModel('dubbing', ({ rolePropOptions }) => rolePropOptions); return ; }; export default Cascader; ```
1. 因为这样容易让开发者自定义 2. 扩展性更强 ```javascript const mergedOptionColumns = isEmpty ? [{ options: emptyList }] : optionColumns; const columnNodes: React.ReactElement[] = mergedOptionColumns.map( (col, index) => { const prevValuePath = activeValueCells.slice(0, index);...
Would support dropdownRender prop to custom menulist ?
[reproduce link](https://codesandbox.io/s/duo-xuan-antd-4-17-3-forked-oph1q?file=/index.js)
性能需求
在li渲染大数据的时候有性能问题,有考虑` li ` 换为 `rc-virtual-lis`t 么?
  
https://github.com/react-component/cascader/blob/master/src/Cascader.tsx#L372 没理解为什么这么做, 如果想要传 ’SHOW_CHILD'效果怎么办