-
-
Notifications
You must be signed in to change notification settings - Fork 222
New issue
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
Dropdown only printing first option #196
Comments
Maybe this issue comes from the fact that the DOM tree gets cloned and some attributes are getting lost in the process? Same issue here: #66 which got closed mistakenly. |
@MattFromGer yes, all these issues are likely related. I don't know what's causing them. If you have any ideas, I'm happy to explore. #66 was closed because the same issue is now being tracked in #195 |
Any update ? |
anyone came up with a solution?? |
Apologies for the delay on fixing this. Turns out it was very similar to the previous issue with fixing checkbox values. Will push a new version shortly with the fix. Happy new years! |
Should be fixed in v2.12.2, along with ensuring all inputs work. Please let me know if you see any issues. Thanks! |
I am currently experiencing a problem with trying to print a dropdown on my site's page. It appears that the
select
tag is only rendering the firstoption
for print, regardless of whichoption
has been chosen by the user.My
select
element has avalue
attribute that is tied to astate
variable. There is also anonChange
event on myselect
tag that triggers the state/value change whenever the user selects a new option from the dropdown. However, printing seems to ignore whatever the chosen value is and will only print the first option in the dropdown.I've attached a code sandbox link demonstrating this problem.
CodeSandbox Example
The text was updated successfully, but these errors were encountered: