Sortable Kendo UI

2

I need to mount a screen where I drag options from one list to another. However, when loading from the first to the second, only one copy should be created for the second list.

When the user performs the reverse process (load from list 2 to list 1) he should exclude from list 2 and do nothing on list 1.

Kendo gives me the following example, but I can not adjust it. For every time I move the options from side to side the first list loses elements.

Thank you!

Kendo Example

    
asked by anonymous 17.12.2014 / 20:59

1 answer

3

The SortableList component does not have the functionality you want. The best way would be to construct your own component, from the Draggable and DropTargetArea components, which were also used to create SortableList .

See : link

    
18.12.2014 / 07:47