Hello.
Im trying to use your component, currenty trial, just to proof my concept.
I have grouping on boolean columns. I need to localize values (true/false) into my lang or clients lang ..
I try this. It works great. BUT props.key does not exists, its always undefined. It is most likely bug .. but i cant find way to make this wokrs other way. Can you explain to me, why you have it like this? Im considering using your components, but these errors is not good and If I choose your components for my projects, I really dont want to have to solve such errors commonly becouse of your components .. thank you for your answer, have a nice day
let groupOptions = {
showDropArea: true,
captionTemplate: (props: any) => {
return (
<span className="groupItems" style={{ color: '#FFC600' }}>
{t('itemsHeader')}: {props.key} - {props.count} {t('items')}
</span>
);
}
};