2070207120722073207420752076
* Builds new wicket's behavior converting appropriate component to jquery draggable. * * @return */ public static final DraggableBehavior draggable() { return new DraggableBehavior(); }
2080208120822083208420852086
* * @param options * @return */ public static final DraggableBehavior draggable(DraggableOptions options) { return new DraggableBehavior(options); }
32333435363738
private static final long serialVersionUID = 1L; public DraggablePanel(String id, IModel<?> model) { super(id, model); super.add(new DraggableBehavior(newDraggableOptions())); }
37383940414243
super.add(new DraggableBehavior(newDraggableOptions())); } public DraggablePanel(String id) { super(id); super.add(new DraggableBehavior(newDraggableOptions())); }