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
There are two (related) issues with the ListEditor:
setValue
setValue(['foo'])
getValue()
['foo']
render()
This is a bug in the original implementation. See here, here, and here. There is an unmerged solution.
The text was updated successfully, but these errors were encountered:
Fix setValue, render in ListEditor
3c43b1d
Closes #3
1499782
wesvetter
No branches or pull requests
There are two (related) issues with the ListEditor:
setValue
doesn't work – callingsetValue(['foo'])
thengetValue()
does not return['foo']
.render()
does not re-render the list after the initial call, and it modifies the result ofgetValue()
.This is a bug in the original implementation. See here, here, and here. There is an unmerged solution.
The text was updated successfully, but these errors were encountered: