Are there any form to set pair key-values for the filter in ag-grid? (show to the user a different value than it is set in the filterModel)
filterParams: {
values: { tyt: "Toyota",
frd: "Ford",
prs: "Porsche",
nss: "Nissan"
},
}
filterParams: {
values: ["Toyota", "Ford", "Porsche", "Nissan"],
cellRendererParams: return 'tyt',
}