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
Describe the bug In cell range selection feature you can't paste data from cell if you don't click on cell after copy.
Tabulator Info It is in every version on website, same issue
Working Example You can recreate this problem on https://tabulator.info/docs/6.3/range#clipboard
To Reproduce A step by step guide to recreate the issue in https://tabulator.info/docs/6.3/range#clipboard:
Expected behavior Data should be pasted.
Desktop (please complete the following information):
Additional info I tried to debug it in source code. The paste event is not triggering after coping data.
if(this.mode === true || this.mode === "paste") { this.table.element.addEventListener("paste", (e) => { this.paste(e); }); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
In cell range selection feature you can't paste data from cell if you don't click on cell after copy.
Tabulator Info
It is in every version on website, same issue
Working Example
You can recreate this problem on https://tabulator.info/docs/6.3/range#clipboard
To Reproduce
A step by step guide to recreate the issue in https://tabulator.info/docs/6.3/range#clipboard:
Expected behavior
Data should be pasted.
Desktop (please complete the following information):
Additional info
I tried to debug it in source code. The paste event is not triggering after coping data.
if(this.mode === true || this.mode === "paste") { this.table.element.addEventListener("paste", (e) => { this.paste(e); }); }
The text was updated successfully, but these errors were encountered: