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
Hi,
There is a dropdown validator issue when more than 1 character in dropdown. For example,
rhandsontable(data.frame(char = rep("Ab", 2))) %>% hot_col( "char", type = "dropdown", source = "Ab" )
The background of cells will be changed to red after the dropdown is opened.
However, if the "Ab" is changed to "A", then the background of cells will not be changed after the dropdown is opened.
Now, the below validator argument is added to resolve the issue
validator = paste0( "function(value, callback) {", " callback(value === 'Ab' ? true : false);", "}" )
..., however, does anyone have better resolution for solving this issue?
Thank you
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
There is a dropdown validator issue when more than 1 character in dropdown. For example,
The background of cells will be changed to red after the dropdown is opened.
However, if the "Ab" is changed to "A", then the background of cells will not be changed after the dropdown is opened.
Now, the below validator argument is added to resolve the issue
..., however, does anyone have better resolution for solving this issue?
Thank you
The text was updated successfully, but these errors were encountered: