数据网格拖放样式

发布于 2024-10-19 12:04:45 字数 185 浏览 2 评论 0原文

当我将拖动的项目输入数据网格时,数据网格的活动行上方会出现一条粗线(这可以很好地显示活动行),但问题是即使我将项目放入数据网格后,该线仍保留在那里。仅当我输入新项目时才会出现(在这种情况下,新行再次出现在相应的行中)。

我正在使用自定义处理程序来处理此数据网格的拖放事件。

谁能告诉我如何摆脱这条线?

谢谢。

When I enter with a dragged item into datagrid, a bold line appears over the active row of the datagrid (which is fine to show the active row), but the problem is that even after I drop the item into datagrid, that line remains there. It goes only if I enter with a new item (in which case a new line comes to the respective row again).

I am using custom handler for dragdrop event for this datagrid.

Could anyone let me know how to get rid of this line?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃扇骨 2024-10-26 12:04:45

来自

要解决“粘性”黑线,只需
称呼
dataGridId.hideDropFeedback(event); at
放置处理函数的结尾。

From http://www.flexer.info/2008/02/08/how-to-remove-the-black-line-from-a-tree-control-drag-and-drop-enabled/:

To resolve a “sticky” black line, just
call
dataGridId.hideDropFeedback(event); at
the end of your drop handler function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文