我有一个实际上看上去像这样的组列(在某些情况下显示组名和滑块图标):
代码如下:
this.gridOptions = {
autoGroupColumnDef: {
sort: 'asc',
sortable: true,
cellRendererParams: {
checkbox: true,
innerRendererFramework: GroupCellComponent // Component reponsible of showing the group name and the icons
}
}
};
我的用户希望滑块图标完全左对齐(甚至在角度图标之前)。
是否可以这样做,而不必自定义整个列?威奇将要求我照顾所有内置功能(扩展,选择...)。