We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In my Vue application, when I pass a value formatter to the BL Datepicker, it is incorrectly treated as a string rather than as a function.
The value formatter is interpreted as a string, resulting in unexpected behavior.
The value formatter should be treated as a function and executed accordingly, not as a string.
3.3.0 beta.9
OS: macos
Browser: chrome
Application: Vue 2.7
Medium (should be fixed soon)
The text was updated successfully, but these errors were encountered:
I was able to use valueFormetter feature like this
const formatDates = (dates: Date[]) => dates?.join(','); <BlDatepicker type='range' className={styles.filter} onBlDatepickerChange={(event) => setRangePickerDates(event.detail)} ref={datepickerRef} valueFormatter={formatDates} />
What is the problem that you encountered ?
Sorry, something went wrong.
No branches or pull requests
Issue description
Description:
In my Vue application, when I pass a value formatter to the BL Datepicker, it is incorrectly treated as a string rather than as a function.
Steps to Reproduce:
Actual Behavior:
The value formatter is interpreted as a string, resulting in unexpected behavior.
Expected Behavior:
The value formatter should be treated as a function and executed accordingly, not as a string.
Media & Screenshots
Baklava Version
3.3.0 beta.9
Operating system
OS: macos
Browser: chrome
Application: Vue 2.7
Priority this issue should have
Medium (should be fixed soon)
Please review the checkboxes that are applicable.
The text was updated successfully, but these errors were encountered: