Re: wicket-dnd strange situation

2012-09-19 Thread Marieke Vandamme
Dear Sven, Is wicket-dnd already changed for wicket 6 ? I can't find the sources for this.. Thanks! Kind Regards, Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-dnd-strange-situation-tp4650918p4652141.html Sent from the Users forum

Re: wicket-dnd strange situation

2012-09-19 Thread Sven Meier
That's still on my TODO list. Sven On 09/19/2012 12:56 PM, Marieke Vandamme wrote: Dear Sven, Is wicket-dnd already changed for wicket 6 ? I can't find the sources for this.. Thanks! Kind Regards, Marieke Vandamme -- View this message in context:

RE: wicket-dnd strange situation

2012-08-14 Thread Decebal Suiu
Hi Hielke First, I want to say thanks for wiquery. I integrated wiquery in a big project with success and we are happy with them. I know that the 2 code snippets do exactly the same. The first uses the wicket mechanism and the second uses the jquery mechanism. I read at

RE: wicket-dnd strange situation

2012-08-13 Thread Hielke Hoeve
@wicket.apache.org Subject: Re: wicket-dnd strange situation Another technical question is who (I suppose wiquery) and why change Wicket.Event.add(window, domready, function(event) { new wicketdnd.DropTarget(...) }); in $(document).ready(function(event){new wicketdnd.DropTarget(...)}); Best regards

Re: wicket-dnd strange situation

2012-08-02 Thread Sven Meier
For Wicket 6 I'll port wicket-dnd to jquery. Sven Decebal Suiu decebal.s...@asf.ro schrieb: Hello Sven First, I want to say thanks for your contribution to wicket (for wicket-tree and wicket-dnd in special). Yes, I use wiquery :) I read

Re: wicket-dnd strange situation

2012-08-02 Thread Decebal Suiu
Nice. I see a beautiful future :) wicket-dnd integrated with wicket tree and of course wicket-dnd part of wicket core. Now, I'm waiting a clarification from a member of wiquery. Thanks again, Decebal -- View this message in context:

Re: wicket-dnd strange situation

2012-08-02 Thread julien roche
hi Prototype uses $ like jQuery. That can create conflict (your error message indicates that the jquery method ready is not available. probably vecause Prototype was loaded after jquery and so override $.). jquery offers a noconflict mode, but I don't remember if we have integrate it to wiquery

Re: wicket-dnd strange situation

2012-08-02 Thread Decebal Suiu
Hi Julien Thanks for the fast response. Sven says that for wicket 6, wicket-dnd will be port to jquery but now I see that I have only one option: to give up one library (wiquery or wicket-dnd). Both libraries are very good and I want to keep both. Is it a chance to activate jquery no conflict

Re: wicket-dnd strange situation

2012-08-02 Thread Decebal Suiu
Another technical question is who (I suppose wiquery) and why change Wicket.Event.add(window, domready, function(event) { new wicketdnd.DropTarget(...) }); in $(document).ready(function(event){new wicketdnd.DropTarget(...)}); Best regards, Decebal -- View this message in context:

Re: wicket-dnd strange situation

2012-08-01 Thread Decebal Suiu
Wicket.Event.add(window, domready, function(event) { new wicketdnd.DropTarget(...) }); // works $(document).ready(function(event){new wicketdnd.DropTarget(...)}); // error (probably jquery not found or a conflict between jquery and prototype) -- View this message in context:

Re: wicket-dnd strange situation

2012-08-01 Thread Sven Meier
Are you using wiquery? I remember an incompatibility between prototype and jquery in that case. Sven On 08/01/2012 03:58 PM, Decebal Suiu wrote: Wicket.Event.add(window, domready, function(event) { new wicketdnd.DropTarget(...) }); // works $(document).ready(function(event){new