Re: Another Wicket 6 migration issue: drag and drop (so far done with wiquery)

2013-02-18 Thread Martin Dietze
On Fri, February 15, 2013, Emond Papegaaij wrote: DroppableBehavior is the replacement of DroppableAjaxBehavior. You use it like this: final DroppableBehavior droppableBehavior = new DroppableBehavior(); droppableBehavior.setDropEvent( new AjaxDropCallback() { protected void

Another Wicket 6 migration issue: drag and drop (so far done with wiquery)

2013-02-15 Thread Martin Dietze
Another thing I am stuck trying to port my project from Wicket 1.4.x to 6.6.0 is DND-mechanics which so far had been implemented using wiquery 1.2. As I see the 'DroppableAjaxBehavior' class has disappeared from wiquery since the 6.0 release. However no mention could be found on either migration

Re: Another Wicket 6 migration issue: drag and drop (so far done with wiquery)

2013-02-15 Thread Ernesto Reinaldo Barreiro
Hi, It seems that behavior was not ported into 6.x branch. I have created https://github.com/WiQuery/wiquery/issues/17 and will try to fix the issue ASAP. On Fri, Feb 15, 2013 at 2:20 PM, Martin Dietze d...@fh-wedel.de wrote: Another thing I am stuck trying to port my project from Wicket

Re: Another Wicket 6 migration issue: drag and drop (so far done with wiquery)

2013-02-15 Thread Emond Papegaaij
DroppableBehavior is the replacement of DroppableAjaxBehavior. You use it like this: final DroppableBehavior droppableBehavior = new DroppableBehavior(); droppableBehavior.setDropEvent( new AjaxDropCallback() { protected void drop(AjaxRequestTarget target, Component source, Component dropped)

Re: Another Wicket 6 migration issue: drag and drop (so far done with wiquery)

2013-02-15 Thread Ernesto Reinaldo Barreiro
Hi, I just added old AJAX behaviors for backward compatibility. On Fri, Feb 15, 2013 at 8:28 PM, Emond Papegaaij emond.papega...@gmail.comwrote: DroppableBehavior is the replacement of DroppableAjaxBehavior. You use it like this: final DroppableBehavior droppableBehavior = new