[jboss-user] [JBoss Seam] - Re: Seam and Richfaces : Drag and Drop Problem

2007-04-23 Thread davidetaibi
Setting UseJBossWebLoader=true I solved my problem thank you very much! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4039887#4039887 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4039887

[jboss-user] [JBoss Seam] - Re: Seam and Richfaces : Drag and Drop Problem

2007-04-23 Thread davidetaibi
I've another problem now. When I try to use this code | public void processDrop(DropEvent dropEvent) { | Dropzone dropzone = (Dropzone) dropEvent.getComponent(); | moveItem(dropEvent.getDragValue(), dropzone.getDropValue()); | | } | |

[jboss-user] [JBoss Seam] - Re: Seam and Richfaces : Drag and Drop Problem

2007-03-30 Thread davidetaibi
Thank you for your post but I try your example (I create the two enumerations too) and I have the same error: javax.servlet.ServletException: /test2.xhtml @52,58 dropListener=#{dand.dragged}: Method not found: DandDAction.dragged(org.ajax4jsf.dnd.event.DropEvent) I'm using this web.xml file:

[jboss-user] [JBoss Seam] - Seam and Richfaces : Drag and Drop Problem

2007-03-29 Thread davidetaibi
I use sem-gem to generate a new eclipse project (seam setup, seam new-project), then I added a new action testdnd to perform drag and drop operation. This is the code import java.util.ArrayList; | import java.util.List; | | import javax.ejb.Stateless; | import