是否有任何形式可以为 ag-grid 中的过滤器设置键值对?(向用户显示与 filterModel 中设置的值不同的值)
filterParams: {
values: { tyt: "Toyota",
frd: "Ford",
prs: "Porsche",
nss: "Nissan"
},
}
filterParams: {
values: ["Toyota", "Ford", "Porsche", "Nissan"],
cellRendererParams: return 'tyt',
}