开发者

dojo.dnd one item at a time only

开发者 https://www.devze.com 2022-12-08 21:38 出处:网络
Using dojo.dnd, I want to allow a user to drag only one item at a time, rather than any arbitrary number, as per the dojo\'s default behaviour.

Using dojo.dnd, I want to allow a user to drag only one item at a time, rather than any arbitrary number, as per the dojo's default behaviour.

At the moment, a user can hold Ctrl and click multiple draggable items at a time, then drag them all as a group. I want to disable this so that the user can only drag one item at any given time.

I'm using a dojo.dnd.Source开发者_JAVA技巧(), as below.

new dojo.dnd.Source(containerNode)

...which makes all of the child nodes of containerNode draggable.

Thanks.


You need to set "singular" property of your dojo.dnd.Source (which is inherited from dojo.dnd.Selector):

        new dojo.dnd.Source(containerNode, { singular: true } );
0

精彩评论

暂无评论...
验证码 换一张
取 消