如何在鼠标光标上设置Droppable / Draggable事件

时间:2012-05-23 10:29:16

标签: drag-and-drop wicket

我使用Ajax行为在Wicket中实现了Drag-n-Drop效果。如果我在树节点上拖动图像,则droppable accept的位置位于图像的中间。如何在光标上设置此位置(事件)? 谢谢。

1 个答案:

答案 0 :(得分:0)

我也找到了。解决方案是:

DroppableAjaxBehavior b = new DroppableAjaxBehavior() {
    @Override
    public void onDrop(Component droppedComponent, AjaxRequestTarget target) {
        //do something to handle event
    }
};

b.setTolerance(ToleranceEnum.POINTER);