This works ok:
DroppableOptions droppableOptions = new DroppableOptions();
droppableOptions.setScope("some-string");
$(originalWidget).as(Droppable).droppable(droppableOptions, hm);
This does not:
DroppableOptions droppableOptions = new DroppableOptions();
$(originalWidget).as(Droppable).droppable(droppableOptions, hm);
droppableOptions.setScope("some-string");
My understanding was that you could change all the options even after you made
something draggable/droppable.
Original issue reported on code.google.com by portleta...@gmail.com on 6 May 2014 at 3:34
Original issue reported on code.google.com by
portleta...@gmail.com
on 6 May 2014 at 3:34