-
-
Notifications
You must be signed in to change notification settings - Fork 718
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
[Feature] 提供鼠标拖拽到sheet内部的结束事件 #1176
Comments
Initial list
questionYou need to drag the element content back to the specified cell in the sheet solution |
请问这个功能近期会上吗 |
Will this feature be available soon? |
关注下一个版本的Facade更新,通过onCellPointerMove拿到单元格信息之后就可以进行自定义操作 univerAPI.getSheetHooks().onCellPointerMove((cell) => {
// 拿到当前鼠标指向的单元格
console.log(cell);
}) |
Pay attention to the next version of Facade update. After getting the cell information through onCellPointerMove, you can perform customized operations. univerAPI.getSheetHooks().onCellPointerMove((cell) => {
// Get the cell currently pointed by the mouse
console.log(cell);
}) |
初始清单
问题
需要退拽元素内容到sheet中指定的单元格
解决方案
提供类似luckysheet的cellDragStop方法
The text was updated successfully, but these errors were encountered: