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
If possible, link to a minimal repro (fork this code sandbox): https://blueprintjs.com/docs/#table/features.sorting
Follow the table documentation page instruction to select cell and copy in IE11
No data was copied. Got an Unexpected call to method or property access. error.
Unexpected call to method or property access.
IE 11 is among the browsers that Blueprint supports. The data should be copied.
It seems that DataTransfer.setData only accepts "text" format in IE11 but "text/html" and "text/plain" are used in https://github.com/palantir/blueprint/blob/develop/packages/table/src/common/clipboard.ts#L107 One solution might be just using "text" as format?
The text was updated successfully, but these errors were encountered:
@adidahiya Do you think using just "text" instead of "text/html" and "text/plain" can be a solution?
Sorry, something went wrong.
@chuyachia you're welcome to test it out -- just make sure the behavior for other browsers continues to work.
Successfully merging a pull request may close this issue.
Environment
If possible, link to a minimal repro (fork this code sandbox): https://blueprintjs.com/docs/#table/features.sorting
Steps to reproduce
Follow the table documentation page instruction to select cell and copy in IE11
Actual behavior
No data was copied. Got an
Unexpected call to method or property access.
error.Expected behavior
IE 11 is among the browsers that Blueprint supports. The data should be copied.
Possible solution
It seems that DataTransfer.setData only accepts "text" format in IE11 but "text/html" and "text/plain" are used in https://github.com/palantir/blueprint/blob/develop/packages/table/src/common/clipboard.ts#L107 One solution might be just using "text" as format?
The text was updated successfully, but these errors were encountered: