英文:
Ag-Grid Add custom column to agColumnsToolPanel
问题
我有一个需求,需要在Ag Grid的列侧边菜单中添加额外的列,Ag-Grid是否支持这个功能?
更新我的问题:
我已经找到了解决方案的一半,即创建一个自定义工具面板并开始绘制列,但我遇到了三个问题:
1- 滚动不起作用
2- 列面板与状态栏重叠
3- 拖放不起作用
当前的解决方案结果如下:
英文:
I have a requirement to add an extra column to column side menu in Ag grid
is that possible in Ag-Grid
UPDATE my question
I figure half of the solution to create a custom tool panel and start drawing the columns but I face three issues with that
1- scroll not working
2- columns panel overlap with status bar
3- drag and drop not working
https://stackblitz.com/edit/react-ts-yjpquk?file=App.tsx,customStatsToolPanel2.tsx
答案1
得分: 1
我检查了你提供的链接,成功解决了重叠和滚动问题。
const divStyle = {
overflowY: 'scroll',
border: '1px solid red',
width: '500px',
float: 'left',
height: '500px',
position: 'relative'
};
这个样式可以用在一个容器 div 中,它会正常工作。
英文:
I checked the link you provided and was able to resolve the overlap and scrolling issues.
const divStyle={
overflowY: 'scroll',
border:'1px solid red',
width:'500px',
float: 'left',
height:'500px',
position:'relative'
};
This style can be used in a container div, and it will function properly.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论