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 drop(

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 wrote: > DroppableBehavior is the replacement of DroppableAjaxBehavior. You use it > like this: > > final DroppableBehavior droppableBehavior = new DroppableBehavior(); > droppableB

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, 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 wrote: > Another thing I am stuck trying to port my project from Wicket > 1.4.x to 6.6.0 i

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 p

Drag and Drop Fileupload

2012-04-20 Thread Michael Bürmann
Currently i am working on a project using the ajax fileupload provided by wicket. This is working fine. Is there any (possibly ready) solution to use drag and drop fileupload in my wicket application? Greetings Michael - To

Re: help with drag and drop (wicket-dnd)

2012-02-28 Thread Sven Meier
when i want to move content of first td to second td, I have to do something like this: < table>< tr> < td>< span>AAA< /span>< /td> < td>< span>< /span>< /td> < /tr>< /table> And in onDrop method change model o

Re: help with drag and drop (wicket-dnd)

2012-02-27 Thread Dan12321
/td> < td>< span>< /span>< /td> < /tr>< /table> And in onDrop method change model of first span and second span element? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/help-with-drag-and-drop-wicket-dnd-tp4422338p4425713.

Re: help with drag and drop (wicket-dnd)

2012-02-27 Thread Sven Meier
d element? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/help-with-drag-and-drop-wicket-dnd-tp4422338p4425523.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail:

Re: help with drag and drop (wicket-dnd)

2012-02-27 Thread Dan12321
DragSource) are called. I use there code, that is in ExampleLabel. But the dragged element is not moved and it stay on original place. What I have to do for moving dragged element? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/help-with-drag-and-drop-wicket-dnd-tp

Re: help with drag and drop (wicket-dnd)

2012-02-26 Thread Sven Meier
0.5.0. > >-- >View this message in context: >http://apache-wicket.1842946.n4.nabble.com/help-with-drag-and-drop-wicket-dnd-tp4422338p4423719.html >Sent from the Users forum mailing list archive at Nabble.com. > >-

Re: help with drag and drop (wicket-dnd)

2012-02-26 Thread Dan12321
Thanks. So what should be in method DragSource#onBeforeDrop()? I should set there transfer data: transfer.setData(drag); ? I have Wicket 1.5.4 and wicket-dnd 0.5.0. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/help-with-drag-and-drop-wicket-dnd-tp4422338p4423719

Re: help with drag and drop (wicket-dnd)

2012-02-26 Thread Sven Meier
t;ccc"); bbb.setOutputMarkupId(true); ccc.setOutputMarkupId(true); container.add(bbb); container.add(ccc); But in the methods is transfer.getData() allways NULL. What should be in transfer? The target element? Is the

Re: help with drag and drop (wicket-dnd)

2012-02-26 Thread Dan12321
gt; < span wicket:id="ccc" class="ccc">ccc< /span> -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/help-with-drag-and-dro

Re: help with drag and drop (wicket-dnd)

2012-02-26 Thread Per Newgro
d be in transfer? The target element? Is there any way how to know what element was targeted (drop)? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/help-with-drag-and-drop-wicket-dnd-tp4422338p4422742.html Sent from the Users forum mailing list archive at Nabble.com

Re: help with drag and drop (wicket-dnd)

2012-02-26 Thread Dan12321
tMarkupId(true); container.add(bbb); container.add(ccc); But in the methods is transfer.getData() allways NULL. What should be in transfer? The target element? Is there any way how to know what element was targeted (drop)? -- View this message in context

Re: help with drag and drop (wicket-dnd)

2012-02-26 Thread Sven Meier
Hi, with .drag("span") you tell the drag source that drags should start on span tags. > > > > www > aaa > aaa > > > Do you have a span tag in your markup? Sven On 02/26/2012 04:50 PM, Dan12321 wrote: I would like to use drag and drop functions in m

help with drag and drop (wicket-dnd)

2012-02-26 Thread Dan12321
I would like to use drag and drop functions in my wicket application. Into my pom.xml I add: wicket-dnd (http://code.google.com/p/wicket-dnd/) But my code do not work. Could you help me, please? I have got table. In the first cell ("td") is "span" element. I want this "

RE: AW: drag and drop

2011-09-01 Thread Ramona
HI all! I'm trying to use wicket with html5 for drag and drop multiple files but i haven't found the way to communicate the javascript of html (the one that representates drag & drop: ) with wicket in each upload. Let's say that i have a page where i can drop files and for each

Re: Drag and Drop, simply copy from list A to list B

2011-03-17 Thread lucast
Hi Bruno, Sorry. I should correct myself. I have used wicket-dnd, I took no part in developing this amazing drag and drop functionality. But I am finding it extremely useful in my pet project. I have implemented a very small and simple example about what I asked above (code attached). I

Re: Drag and Drop, simply copy from list A to list B

2011-03-16 Thread Bruno Borges
-- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Drag-and-Drop-simply-copy-from-list-A-to-list-B-tp3335780p3382994.html > Sent from the Users forum mailing list archive at Nabble.com. > > -

Re: Drag and Drop, simply copy from list A to list B

2011-03-16 Thread lucast
For the requirements described above I have implemented wicket-dnd and I have to say it works like a charm. In case anyone finds themselves in a similar predicament any time soon, I thought I put it out there. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Drag-and

Drag and Drop, simply copy from list A to list B

2011-03-04 Thread lucast
item from List B and drop it back into List A, I'd like to remove the item from list B. I thought using YuiDDListView and YuiDDTarget would have been enough since there has been http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-td1881857.html lengthy debates in the past and the conc

Re: Wicket JQuery drag and drop behaviors

2010-11-10 Thread armandoxxx
project ? That would make it a lot easier for all of you since you're making same thing. Regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-JQuery-drag-and-drop-behaviors-tp3033676p3035898.html Sent from the Users forum mailing list a

Re: Wicket JQuery drag and drop behaviors

2010-11-10 Thread Ernesto Reinaldo Barreiro
es, so > these links need to be put somewhere on more visible place ... or be more > promoted ... > > Regards > > Armando > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Wicket-JQuery-drag-and-drop-behaviors-tp3033676p3035616.html

RE: Wicket JQuery drag and drop behaviors

2010-11-09 Thread armandoxxx
pages, so these links need to be put somewhere on more visible place ... or be more promoted ... Regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-JQuery-drag-and-drop-behaviors-tp3033676p3035616.html Sent from the Users forum mailing list

RE: Wicket JQuery drag and drop behaviors

2010-11-09 Thread armandoxxx
Hey ... No I haven't. Regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-JQuery-drag-and-drop-behaviors-tp3033676p3035602.html Sent from the Users forum mailing list archive at Nabbl

RE: Wicket JQuery drag and drop behaviors

2010-11-09 Thread Stefan Lindner
2010 14:08 An: users@wicket.apache.org Betreff: Wicket JQuery drag and drop behaviors Hey Just needed this so I wrote a simple implementation of Drag and Drop for JQuery javascript lib. So if anyone needs it .. be my guest to comment (and/or diSS) on it Put on your page, app or anywhere

Re: Wicket JQuery drag and drop behaviors

2010-11-09 Thread Ernesto Reinaldo Barreiro
> So all the NPE checks and that kinda  stuff is still needed ! > All I needed for my case was to get the dropped component and I needed it to > be done with JQuery. > > Regards > > Armando > > > > -- > View this message in context: > http://apache-wicke

Re: Wicket JQuery drag and drop behaviors

2010-11-09 Thread Martin Makundi
t, final > Component > theComponent) { >                System.out.println("Dropped:" + > theComponent.getClass().getName()); >        } > > > you get the draggable component that was dropped. > > Regards > > Armando > > > -- > View this message in con

Re: Wicket JQuery drag and drop behaviors

2010-11-09 Thread julien roche AKA indiana_jules
> All I needed for my case was to get the dropped component and I needed it > to > be done with JQuery. > > Regards > > Armando > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Wicket-JQuery-drag-and-drop-behaviors-tp30

Re: Wicket JQuery drag and drop behaviors

2010-11-09 Thread armandoxxx
Hey guys .. 10x for sharing .. Was looking for it .. but didn't find anything so I implemented it on my own;) Regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-JQuery-drag-and-drop-behaviors-tp3033676p3034347.html Sent from the

Wicket JQuery drag and drop behaviors

2010-11-09 Thread armandoxxx
Hey Just needed this so I wrote a simple implementation of Drag and Drop for JQuery javascript lib. So if anyone needs it .. be my guest to comment (and/or diSS) on it Put on your page, app or anywhere else cause you need this

Re: Wicket JQuery drag and drop behaviors

2010-11-09 Thread armandoxxx
opped:" + theComponent.getClass().getName()); } you get the draggable component that was dropped. Regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-JQuery-drag-and-drop-behaviors-tp3033676p3033686.html Sent from the Users forum ma

Re: Wicket JQuery drag and drop behaviors

2010-11-09 Thread Martin Makundi
Can it automatically detect which draggable dropped on droppable landing spot? ** Martin 2010/11/9 armandoxxx : > > Hey > > Just needed this so I wrote a simple implementation of Drag and Drop for > JQuery javascript lib. > > So if anyone needs it .. be my guest to commen

Re: Wicket JQuery drag and drop behaviors

2010-11-09 Thread armandoxxx
component and I needed it to be done with JQuery. Regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-JQuery-drag-and-drop-behaviors-tp3033676p3033703.html Sent from the Users forum mailing list archive at Nabble.com

Re: Wicket Drag and Drop

2010-10-18 Thread Jarosz Yohan
on the topic just a few weeks ago. http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-td1881857.html also see http://apache-wicket.1842946.n4.nabble.com/Possible-to-drag-tables-using-WicketDND-tt2532928.html Ernesto On Mon, Oct 18, 2010 at 4:14 PM, Jarosz Yohan wrote: Hi, I want to use

Re: Wicket Drag and Drop

2010-10-18 Thread Ernesto Reinaldo Barreiro
There was a very lengthy thread on the topic just a few weeks ago. http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-td1881857.html also see http://apache-wicket.1842946.n4.nabble.com/Possible-to-drag-tables-using-WicketDND-tt2532928.html Ernesto On Mon, Oct 18, 2010 at 4:14 PM, Jarosz

Wicket Drag and Drop

2010-10-18 Thread Jarosz Yohan
nd/>and about scriptaculous http://yeswicket.com/index.php?post/2010/03/11/Zencontact-15-:-Drag-and-Drop-avec-Wicket-et-Script.aculo.us I wanted to know if someone already use one of these lib and can share the pros and cons he find. If it's easy to implement, to extends, add effects,... thx

RE: AW: drag and drop

2010-06-17 Thread Stefan Lindner
This is a question for jQuery-UI mailing lists. It's independent from the jWicket implementation. -Ursprüngliche Nachricht- Von: DerBernd [mailto:beha...@web.de] Gesendet: Donnerstag, 17. Juni 2010 11:35 An: users@wicket.apache.org Betreff: Re: AW: drag and drop Hi, I

Re: AW: drag and drop

2010-06-17 Thread DerBernd
dex does not work out of the area of the parent panel. I don't use the .ui-draggable-dragging {} for setting the z-index because I want to set different z-indexes for the draggable Components. Hope you can help me out Thanks a lot Bernd -- View this message in context: http://apac

AW: drag and drop

2010-06-09 Thread Stefan Lindner
.iterator() Stefan -Ursprüngliche Nachricht- Von: DerBernd [mailto:beha...@web.de] Gesendet: Mittwoch, 9. Juni 2010 09:44 An: users@wicket.apache.org Betreff: Re: drag and drop Hi, little question at this point. How do I get the child-components of an RepeatingView. Isn't ther

Re: drag and drop

2010-06-09 Thread DerBernd
Hi, little question at this point. How do I get the child-components of an RepeatingView. Isn't there any kind of Collection? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p2248428.html Sent from the Wicket - User mailing list archi

Re: drag and drop

2010-06-07 Thread Istvan Jozsa
amp;paste&adjustments are OK, Istvan On Mon, Jun 7, 2010 at 3:02 PM, DerBernd wrote: > > Ok, > I think I understood, but how do you get the seqnum? > -- > View this message in context: > http://apache-

Re: drag and drop

2010-06-07 Thread DerBernd
Ok, I think I understood, but how do you get the seqnum? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p2245847.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: drag and drop

2010-06-07 Thread Istvan Jozsa
> know how to make it work, cause I found no examples on the web. > > Thanks a lot > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p2245708.html > Sent from the Wicket - User mailing list archive at Nabbl

RE: drag and drop

2010-06-07 Thread DerBernd
But do not really know how to make it work, cause I found no examples on the web. Thanks a lot -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p2245708.html Sent from the Wicket - User mailing list archive at

RE: drag and drop

2010-06-04 Thread DerBernd
Ok, thank you, good to know. At the moment I don't need to watch the dragStop or DragStart Event. So I can leave it as it is. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p2243182.html Sent from the Wicket - User mailing list archi

RE: drag and drop

2010-06-04 Thread Stefan Lindner
in othe rwords: move the onDrop code to the onDragEnd. Sorry, but this is a general problem that can't be fixed in jWicket. Stefan -Ursprüngliche Nachricht- Von: DerBernd [mailto:beha...@web.de] Gesendet: Freitag, 4. Juni 2010 11:36 An: users@wicket.apache.org Betreff: RE: drag and

Re: AW: drag and drop

2010-06-04 Thread DerBernd
Thank you setRawOptions("handle: 'h2'"); works great, just want I was searching for!!! Bernd -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p2242954.html Sent from the Wicket - User mailing list a

RE: drag and drop

2010-06-04 Thread DerBernd
dragger.setWantOnDragStartNotification(true); dragger.setWantOnDragStopNotification(true); dragger.setCursor(CssCursor.MOVE); add(dragger); } ... } -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp188185

AW: drag and drop

2010-06-04 Thread Stefan Lindner
27;t simple have a String parameter, please let me know. Stefan -Ursprüngliche Nachricht- Von: DerBernd [mailto:beha...@web.de] Gesendet: Freitag, 4. Juni 2010 11:14 An: users@wicket.apache.org Betreff: Re: drag and drop No I have a absolutely specific question to jwicket-jquery. I want to set

RE: drag and drop

2010-06-04 Thread Stefan Lindner
e any side effect of calling wantOnDragStartNotification(false); There must be some other strange situation. Stefan -Ursprüngliche Nachricht- Von: DerBernd [mailto:beha...@web.de] Gesendet: Freitag, 4. Juni 2010 11:06 An: users@wicket.apache.org Betreff: Re: drag and drop Than

Re: drag and drop

2010-06-04 Thread DerBernd
text: http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p2242910.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional com

RE: drag and drop

2010-06-04 Thread Stefan Lindner
Could you provide a small testcase? I'm using d&d very intensive in a calendar app and never had any problems with this. Stefan -Ursprüngliche Nachricht- Von: DerBernd [mailto:beha...@web.de] Gesendet: Freitag, 4. Juni 2010 11:06 An: users@wicket.apache.org Betreff: Re: drag

Re: drag and drop

2010-06-04 Thread DerBernd
t found on page - don't know really why -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p2242897.html Sent from the Wicket - User mailing list archive at Nabble.com. -

Re: drag and drop

2010-05-26 Thread Ernesto Reinaldo Barreiro
actly, this is what I want to do! >> Can you tell me how to solf this problem? >> -- >> View this message in context: >> http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p2231455.html >> Sent from the Wicket - User mailing list archive at Nabble.com.

Re: drag and drop

2010-05-26 Thread Ernesto Reinaldo Barreiro
gt; View this message in context: > http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p2231455.html > Sent from the Wicket - User mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: user

RE: drag and drop

2010-05-26 Thread DerBernd
Exactly, this is what I want to do! Can you tell me how to solf this problem? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p2231455.html Sent from the Wicket - User mailing list archive at Nabble.com

RE: drag and drop

2010-05-26 Thread Stefan Lindner
: DerBernd [mailto:beha...@web.de] Gesendet: Mittwoch, 26. Mai 2010 07:51 An: users@wicket.apache.org Betreff: Re: drag and drop Hi, now I tried jwicket-examples and it works quite well. But at the momemt I stuck into a problem and I hope you can help me out. I have a Panel "Placeholder&

Re: drag and drop

2010-05-25 Thread DerBernd
dea about what is wrong;) Thank you Bernd http://apache-wicket.1842946.n4.nabble.com/file/n2231075/WicketMessage.txt WicketMessage.txt -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p2231075.html Sent from the Wicket - User

Re: drag and drop

2010-05-20 Thread DerBernd
Hi, first of all I have to thank you for your many answers .. and your following discussion:-) I will start with the jwicket-examples and see how it works. Thanks a lot Bernd -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p2224344.html Sent

Re: drag and drop

2010-05-19 Thread Ernesto Reinaldo Barreiro
Stefan has a patch. He posted his patch on the issue I created... See my previous e-mail Ernesto On Wed, May 19, 2010 at 1:22 PM, Martin Makundi wrote: > If you have a patch, should be easy to get it accepted to jquery, no? > > 2010/5/19 Ernesto Reinaldo Barreiro : >> Hi Istvan, >> >> Don't tak

Re: drag and drop

2010-05-19 Thread Ernesto Reinaldo Barreiro
osted his fix on that thread ([1]) but they didn't react... Probably Stefan can further comment on the nature of the issue as it seems he did a more thorough investigation while building his fix. Best, Ernesto References. 1-http://forum.jquery.com/topic/drag-and-drop-problems-after-ajax-refre

Re: drag and drop

2010-05-19 Thread Martin Makundi
If you have a patch, should be easy to get it accepted to jquery, no? 2010/5/19 Ernesto Reinaldo Barreiro : > Hi Istvan, > > Don't take me wrong but: can you "confirm" that any other third party > plugins you want to integrate with your application will work with the > patched version of jquery? I

Re: drag and drop

2010-05-19 Thread David Leangen
Can you provide a link to the issue? I'll vote for it. Maybe lots of other people on this list could do the same. ;-) On May 19, 2010, at 8:14 PM, Ernesto Reinaldo Barreiro wrote: Hi Istvan, Don't take me wrong but: can you "confirm" that any other third party plugins you want to integ

Re: drag and drop

2010-05-19 Thread Ernesto Reinaldo Barreiro
Hi Istvan, Don't take me wrong but: can you "confirm" that any other third party plugins you want to integrate with your application will work with the patched version of jquery? I know Stefan has tested a lot his fix but you cannot be 100% sure that this fix will not brake other untested functio

Re: drag and drop

2010-05-19 Thread Stefan Jozsa
I can confirm, that it _IS_ patched, drag&drop works on IE. Istvan > ... think Stefan has patched the jquery.js file to get it > working for his > jWicket project. - To unsubscribe, e-mail: users-unsubscr...@wicket.apa

Re: drag and drop

2010-05-19 Thread Stefan Jozsa
I used wicketstuff-jwicket with SUCCESS. It is based on jQuey, is a non intrusive, extremly easy to use library. Istvan --- On Wed, 5/19/10, DerBernd wrote: > From: DerBernd > Subject: Re: drag and drop > To: users@wicket.apache.org > Date: Wednesday, May 19, 2010, 10:26 AM > Hi

AW: drag and drop

2010-05-19 Thread Stefan Lindner
gmail.com] Gesendet: Mi 19.05.2010 09:54 An: users@wicket.apache.org Betreff: Re: drag and drop Hi Bernd, I would use YUI or give it a try to [1] as: 1-scriptacoulous has the problem (for IE) mentioned on this thread (disclaimer: I don't know if it has been fixed after this tread was crea

Re: drag and drop

2010-05-19 Thread Ernesto Reinaldo Barreiro
features. Could you give me some current links of tutorials to start with. > I also don't know which "technology" to choose: YUI, DOJO, scriptaculous ??? > > Thank you for your help > Bernd > > -- > View this message in context: > http://apache-wicket.1842946.n4.na

AW: drag and drop

2010-05-19 Thread Stefan Lindner
t; Stefan -Ursprüngliche Nachricht- Von: DerBernd [mailto:beha...@web.de] Gesendet: Mi 19.05.2010 09:26 An: users@wicket.apache.org Betreff: Re: drag and drop Hi, I'm working on a wicket-project (1.4) and need to implement some drag&drop features. Could you give me some current li

Re: drag and drop

2010-05-19 Thread DerBernd
this message in context: http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p375.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

RE: wicketstuff-jwicket, drag-and-drop, Internet Explorer 7/8

2010-02-23 Thread Istvan Jozsa
I'm interrested in using jWicket, please use this email for whatever announce, thanks once again, Stefan

RE: wicketstuff-jwicket, drag-and-drop, Internet Explorer 7/8

2010-02-23 Thread Stefan Jozsa
Thanks ! Implemented a dirty workaround by not exposing D&D for IE. IE sucks, is a proprietary mess. Stefan - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wic

RE: wicketstuff-jwicket, drag-and-drop, Internet Explorer 7/8

2010-02-14 Thread Stefan Lindner
9 12:01 An: users@wicket.apache.org Betreff: wicketstuff-jwicket, drag-and-drop, Internet Explorer 7/8 I'm getting Javascript errors (unspecified error, object not found) using jwicket drag-and-drop on IE 7/8. After an error, IE disables Javascript (can be 'restored' just by page r

wicketstuff-jwicket, drag-and-drop, Internet Explorer 7/8

2009-11-23 Thread Stefan Jozsa
I'm getting Javascript errors (unspecified error, object not found) using jwicket drag-and-drop on IE 7/8. After an error, IE disables Javascript (can be 'restored' just by page reload). Any help welcome, thanks in

wicketstuff-jwicket: disable link on drag and drop

2009-11-23 Thread Stefan Jozsa
How can be a link (IndicatingAjaxLink) disabled on drag-and-drop ? I have something like this: myLink = new IndicatingAjaxLink("id"); myLink.add(new DraggableBehavior() { { setName("foo"); setRevert(DraggableBehavior.D

Re: YUI drag and drop problem in Wicket 1.4 rc4

2009-07-11 Thread Joshua Lim
Hi Johan have you tried the yui-examples, "Reordering List" ? the list2 and list3 are using YuiDDListView, and works for me. What is your browser though? Regards Josh 2009/6/5 Johan Haleby > Hi, > > I'm using the latest snapshot of the YUI drag and drop component

YUI drag and drop problem in Wicket 1.4 rc4

2009-06-05 Thread Johan Haleby
Hi, I'm using the latest snapshot of the YUI drag and drop component (a YuiDDListView) for Wicket 1.4 rc4. The problem is that there seems to be a bug in the code and the position parameter is lost. This means that where ever you drop a component it will always end up at the first position i

Re: drag and drop

2009-04-01 Thread Martin Makundi
implements Serializable 2009/4/1 Daniel Ferreira Castro : > I was reading the drag and drop thread, started on March 19th and trying to > use the *yui *ajax implementation as the yui example suggests.But I am > recieving an exception like that > > It is wierd because I declared

Re: drag and drop

2009-04-01 Thread Daniel Ferreira Castro
I was reading the drag and drop thread, started on March 19th and trying to use the *yui *ajax implementation as the yui example suggests.But I am recieving an exception like that It is wierd because I declared the class field TargetSlot as transient. No matter if I declare it as transient or

Re: drag and drop

2009-03-19 Thread Ernesto Reinaldo Barreiro
o [mailto:reier...@gmail.com] > Gesendet: Donnerstag, 19. März 2009 21:31 > An: users@wicket.apache.org > Betreff: Re: drag and drop > > I would use YUI drag and drop instead of scriptaculous. I was using > scriptaculous for that purpose, I just implemented a table with draggable

RE: drag and drop

2009-03-19 Thread Stefan Lindner
It is still there. I had massive problems with updating dropable items in a table with ajax. -Ursprüngliche Nachricht- Von: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com] Gesendet: Donnerstag, 19. März 2009 21:31 An: users@wicket.apache.org Betreff: Re: drag and drop I would use

Re: drag and drop

2009-03-19 Thread Ernesto Reinaldo Barreiro
I would use YUI drag and drop instead of scriptaculous. I was using scriptaculous for that purpose, I just implemented a table with draggable columns, but I had some issues with AJAX updates on IE: after first page reload draggables stoped to work because dropables had to be removed/recreated

Re: drag and drop

2009-03-19 Thread Eike
cket-prototype etc > > Thanks > -- > View this message in context: > http://www.nabble.com/drag-and-drop-tp22595081p22595081.html > Sent from the Wicket - User mailing list archive at Nabble.com. > > > - >

drag and drop

2009-03-19 Thread tbt
which is compatible with the wicket version that I am using. Any suggestions as to how this should be implemented using wicket is also welcome. eg: wicket-dojo, wicket-jquery, wicket-prototype etc Thanks -- View this message in context: http://www.nabble.com/drag-and-drop-tp22595081p22595081.html

[wicketstuff-jquery] Drag and Drop seems to freeze in IE7

2008-02-19 Thread gaugat
s the same problem. If you drag an item in IE7, you can only do it once. Any ideas? -- View this message in context: http://www.nabble.com/-wicketstuff-jquery--Drag-and-Drop-seems-to-freeze-in-IE7-tp15562344p15562344.html Sent from the Wicket - User mailing list archive at Nabbl

jquery Drag and Drop freezes in IE

2008-02-07 Thread gaugat
n IE7, you can only do it once. Any ideas? -- View this message in context: http://www.nabble.com/jquery-Drag-and-Drop-freezes-in-IE-tp15348903p15348903.html Sent from the Wicket - User mailing list archive at Nabble.com. ---

Drag and Drop DataTable rows

2007-12-27 Thread Joe Toth
Anyone create a drag and drop reordering component out of a DataTable? I want to reorder the rows via drag and drop. I see the scriptaculous SortableListView, but I would have to significantly change a lot of my pages. Anyone tackle this? Thanks

Re: Ajax Dojo Drag and Drop

2007-11-09 Thread Andrew Moore
Item)); > } > }); > datacontainer.add(new AjaxPagingNavigator("navigator", imageView)); > > I've been trying to look at the wicket stuff dojo drag and drop stuff, as > what I would ideally like instead of having a moveUpLink and m

Ajax Dojo Drag and Drop

2007-11-09 Thread Andrew Moore
atacontainer.add(new AjaxPagingNavigator("navigator", imageView)); I've been trying to look at the wicket stuff dojo drag and drop stuff, as what I would ideally like instead of having a moveUpLink and moveDownLink is the ability to drag and drop the order of items in the list. I

Re: How do i drag and drop using wicket 1.2.6

2007-09-12 Thread Ryan Sonnek
don't forget the wicketstuff-scriptaculous project! it supports drag/drop as well! http://wicketstuff.org/confluence/display/STUFFWIKI/wicketstuff-scriptaculous On 9/12/07, Scott Swank <[EMAIL PROTECTED]> wrote: > > They have that in an example in the wicket-dojo extension -- though > I've never

Re: How do i drag and drop using wicket 1.2.6

2007-09-12 Thread Scott Swank
They have that in an example in the wicket-dojo extension -- though I've never dug into wicket-dojo. http://wicketstuff.org/confluence/display/STUFFWIKI/WicketStuff+Dojo http://www.demay-fr.net:8080/Wicket-start/app - Scott On 9/12/07, bhupat parmar <[EMAIL PROTECTED]> wrote: > hi > > > i want

How do i drag and drop using wicket 1.2.6

2007-09-12 Thread bhupat parmar
hi i want to add drag drop feature in my app. i am using wicket 1.2.6, can it be done .What to do? thanks