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
The tabindex is hardcoded and I have no options to control it for the footer button of the calendar.
The only options for the footer are: footer: boolean (display it) footerFormat: string
Have tried to set the tab index by using a hook and accessing the DOM element to set attribute but that fails to work.
` React.useEffect(() => { const footerElement = document.querySelector('.rw-calendar-footer .rw-btn');
if (footerElement) { footerElement.setAttribute("tabindex", "0"); footerElement.tabIndex = 0; footerElement.tabindex = 0; } }, [openState]);`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The tabindex is hardcoded and I have no options to control it for the footer button of the calendar.
The only options for the footer are:
footer: boolean (display it)
footerFormat: string
Have tried to set the tab index by using a hook and accessing the DOM element to set attribute but that fails to work.
` React.useEffect(() => {
const footerElement = document.querySelector('.rw-calendar-footer .rw-btn');
The text was updated successfully, but these errors were encountered: