jakezatecky / react-dual-listbox

A feature-rich dual listbox for React.
https://jakezatecky.github.io/react-dual-listbox/
MIT License
109 stars 58 forks source link

Is it possible to change header label? #219

Closed yujun2017 closed 1 year ago

yujun2017 commented 1 year ago

This is a really good library and great to find it. I plan to use it in my project. I would like to ask if we can change the header label. Also can we add available total and select total in this library?

Thanks!

John

jakezatecky commented 1 year ago

Yes, you can change the header label by passing the lang property. See the default object for the list of keys/values.

The component does not show the number of total options selected or available. However, it would be easily to calculate that by using selected.length for the selected total and either options.length - selected.length for available total if using defaults, or options.length if passing the allowDuplicates property.

yujun2017 commented 1 year ago

Thank you so much!