From jira-events at lists.jboss.org Tue Sep 18 11:22:11 2007 Content-Type: multipart/mixed; boundary="===============2150759955296141947==" MIME-Version: 1.0 From: Maksim Kaszynski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Tue, 18 Sep 2007 11:22:11 -0400 Message-ID: <6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com> --===============2150759955296141947== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Drag'n Drop: dragValue is null, when dragging across different regions ---------------------------------------------------------------------- Key: RF-961 URL: http://jira.jboss.com/jira/browse/RF-961 Project: RichFaces Issue Type: Bug Affects Versions: 3.1.0 Reporter: Maksim Kaszynski Assigned To: Maksim Kaszynski Fix For: 3.2.0 On the following page, dragValue is null. In terms of JSF concepts, everything is correct - other regions just don't = get processed. maybe, we should hack it in some way. <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" prefix= =3D"rich"%> <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix=3D"= p"%> <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" prefix= =3D"t"%>
public class WeaponDropListener implements DropListener{ = public void processDrop(DropEvent event) { Dropzone dropZone =3D (Dropzone) event.getComponent(); ArrayList selected =3D (ArrayList) dropZone.getDropValue(= ); System.err.print(selected.size()); Object ob =3D event.getDragValue(); System.out.println("DragValue " + event.getDragValue()); System.out.println("DropValue " + event.getDropValue()); if(ob =3D=3D null) System.err.print("objeto nulo"); selected.add((InitItem) event.getDragValue()); = } } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= p://jira.jboss.com/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2150759955296141947==-- From jira-events at lists.jboss.org Fri Oct 12 05:34:03 2007 Content-Type: multipart/mixed; boundary="===============4595080766591308726==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Fri, 12 Oct 2007 05:34:03 -0400 Message-ID: <3192549.1192181643498.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com --===============4595080766591308726== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ http://jira.jboss.com/jira/browse/RF-961?page=3Dall ] Nick Belaevski reassigned RF-961: --------------------------------- Assignee: Nick Belaevski (was: Maksim Kaszynski) > Drag'n Drop: dragValue is null, when dragging across different regions > ---------------------------------------------------------------------- > > Key: RF-961 > URL: http://jira.jboss.com/jira/browse/RF-961 > Project: RichFaces > Issue Type: Bug > Affects Versions: 3.1.0 > Reporter: Maksim Kaszynski > Assigned To: Nick Belaevski > Fix For: 3.2.0 > > > On the following page, dragValue is null. > In terms of JSF concepts, everything is correct - other regions just don'= t get processed. > maybe, we should hack it in some way. > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" pref= ix=3D"rich"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix= =3D"p"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" pref= ix=3D"t"%> > > > > > >
> > > > > > > > dragValue=3D"#{item}"> > > > > > > > > > > > dropListener=3D"#{WeaponDropListener.processDrop}" > dropValue=3D"#{PjCreationDataBean.selectedItems}" reRender=3D"sItems= "> > > value=3D"#{PjCreationDataBean.selectedItems}" var=3D"item"> > > > > > > > > > >
> > > > > public class WeaponDropListener implements DropListener{ > = > public void processDrop(DropEvent event) { > Dropzone dropZone =3D (Dropzone) event.getComponent(); > ArrayList selected =3D (ArrayList) dropZone.getDropValu= e(); > System.err.print(selected.size()); > Object ob =3D event.getDragValue(); > System.out.println("DragValue " + event.getDragValue()); > System.out.println("DropValue " + event.getDropValue()); > if(ob =3D=3D null) > System.err.print("objeto nulo"); > selected.add((InitItem) event.getDragValue()); > = > } > } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= p://jira.jboss.com/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4595080766591308726==-- From jira-events at lists.jboss.org Sun Nov 11 20:18:44 2007 Content-Type: multipart/mixed; boundary="===============4025638610680663876==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Work started: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Sun, 11 Nov 2007 20:18:44 -0500 Message-ID: <11257102.1194830324590.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com --===============4025638610680663876== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ http://jira.jboss.com/jira/browse/RF-961?page=3Dall ] Work on RF-961 started by Nick Belaevski. > Drag'n Drop: dragValue is null, when dragging across different regions > ---------------------------------------------------------------------- > > Key: RF-961 > URL: http://jira.jboss.com/jira/browse/RF-961 > Project: RichFaces > Issue Type: Bug > Affects Versions: 3.1.0 > Reporter: Maksim Kaszynski > Assigned To: Nick Belaevski > Fix For: 3.2.0 > > > On the following page, dragValue is null. > In terms of JSF concepts, everything is correct - other regions just don'= t get processed. > maybe, we should hack it in some way. > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" pref= ix=3D"rich"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix= =3D"p"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" pref= ix=3D"t"%> > > > > > >
> > > > > > > > dragValue=3D"#{item}"> > > > > > > > > > > > dropListener=3D"#{WeaponDropListener.processDrop}" > dropValue=3D"#{PjCreationDataBean.selectedItems}" reRender=3D"sItems= "> > > value=3D"#{PjCreationDataBean.selectedItems}" var=3D"item"> > > > > > > > > > >
> > > > > public class WeaponDropListener implements DropListener{ > = > public void processDrop(DropEvent event) { > Dropzone dropZone =3D (Dropzone) event.getComponent(); > ArrayList selected =3D (ArrayList) dropZone.getDropValu= e(); > System.err.print(selected.size()); > Object ob =3D event.getDragValue(); > System.out.println("DragValue " + event.getDragValue()); > System.out.println("DropValue " + event.getDropValue()); > if(ob =3D=3D null) > System.err.print("objeto nulo"); > selected.add((InitItem) event.getDragValue()); > = > } > } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= p://jira.jboss.com/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4025638610680663876==-- From jira-events at lists.jboss.org Fri Jan 4 19:33:43 2008 Content-Type: multipart/mixed; boundary="===============0477706294232208324==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Work stopped: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Fri, 04 Jan 2008 19:33:43 -0500 Message-ID: <3059711.1199493223619.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com --===============0477706294232208324== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ http://jira.jboss.com/jira/browse/RF-961?page=3Dall ] Work on RF-961 stopped by Nick Belaevski. > Drag'n Drop: dragValue is null, when dragging across different regions > ---------------------------------------------------------------------- > > Key: RF-961 > URL: http://jira.jboss.com/jira/browse/RF-961 > Project: RichFaces > Issue Type: Bug > Affects Versions: 3.1.0 > Reporter: Maksim Kaszynski > Assigned To: Nick Belaevski > Fix For: 3.2.0 > > > On the following page, dragValue is null. > In terms of JSF concepts, everything is correct - other regions just don'= t get processed. > maybe, we should hack it in some way. > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" pref= ix=3D"rich"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix= =3D"p"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" pref= ix=3D"t"%> > > > > > >
> > > > > > > > dragValue=3D"#{item}"> > > > > > > > > > > > dropListener=3D"#{WeaponDropListener.processDrop}" > dropValue=3D"#{PjCreationDataBean.selectedItems}" reRender=3D"sItems= "> > > value=3D"#{PjCreationDataBean.selectedItems}" var=3D"item"> > > > > > > > > > >
> > > > > public class WeaponDropListener implements DropListener{ > = > public void processDrop(DropEvent event) { > Dropzone dropZone =3D (Dropzone) event.getComponent(); > ArrayList selected =3D (ArrayList) dropZone.getDropValu= e(); > System.err.print(selected.size()); > Object ob =3D event.getDragValue(); > System.out.println("DragValue " + event.getDragValue()); > System.out.println("DropValue " + event.getDropValue()); > if(ob =3D=3D null) > System.err.print("objeto nulo"); > selected.add((InitItem) event.getDragValue()); > = > } > } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= p://jira.jboss.com/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0477706294232208324==-- From jira-events at lists.jboss.org Mon Mar 24 11:54:40 2008 Content-Type: multipart/mixed; boundary="===============5358267842905377184==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Mon, 24 Mar 2008 11:54:40 -0400 Message-ID: <23283378.1206374080255.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com --===============5358267842905377184== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ http://jira.jboss.com/jira/browse/RF-961?page=3Dall ] Nick Belaevski updated RF-961: ------------------------------ Fix Version/s: 3.2.1 (was: 3.2.0) > Drag'n Drop: dragValue is null, when dragging across different regions > ---------------------------------------------------------------------- > > Key: RF-961 > URL: http://jira.jboss.com/jira/browse/RF-961 > Project: RichFaces > Issue Type: Bug > Affects Versions: 3.1.0 > Reporter: Maksim Kaszynski > Assigned To: Nick Belaevski > Fix For: 3.2.1 > > > On the following page, dragValue is null. > In terms of JSF concepts, everything is correct - other regions just don'= t get processed. > maybe, we should hack it in some way. > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" pref= ix=3D"rich"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix= =3D"p"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" pref= ix=3D"t"%> > > > > > >
> > > > > > > > dragValue=3D"#{item}"> > > > > > > > > > > > dropListener=3D"#{WeaponDropListener.processDrop}" > dropValue=3D"#{PjCreationDataBean.selectedItems}" reRender=3D"sItems= "> > > value=3D"#{PjCreationDataBean.selectedItems}" var=3D"item"> > > > > > > > > > >
> > > > > public class WeaponDropListener implements DropListener{ > = > public void processDrop(DropEvent event) { > Dropzone dropZone =3D (Dropzone) event.getComponent(); > ArrayList selected =3D (ArrayList) dropZone.getDropValu= e(); > System.err.print(selected.size()); > Object ob =3D event.getDragValue(); > System.out.println("DragValue " + event.getDragValue()); > System.out.println("DropValue " + event.getDropValue()); > if(ob =3D=3D null) > System.err.print("objeto nulo"); > selected.add((InitItem) event.getDragValue()); > = > } > } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= p://jira.jboss.com/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5358267842905377184==-- From jira-events at lists.jboss.org Sun Apr 27 19:39:09 2008 Content-Type: multipart/mixed; boundary="===============4067384735368750448==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Sun, 27 Apr 2008 19:39:09 -0400 Message-ID: <7212007.1209339549609.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com --===============4067384735368750448== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ http://jira.jboss.com/jira/browse/RF-961?page=3Dall ] Nick Belaevski updated RF-961: ------------------------------ Fix Version/s: 3.2.2 (was: 3.2.1) > Drag'n Drop: dragValue is null, when dragging across different regions > ---------------------------------------------------------------------- > > Key: RF-961 > URL: http://jira.jboss.com/jira/browse/RF-961 > Project: RichFaces > Issue Type: Bug > Affects Versions: 3.1.0 > Reporter: Maksim Kaszynski > Assigned To: Nick Belaevski > Fix For: 3.2.2 > > > On the following page, dragValue is null. > In terms of JSF concepts, everything is correct - other regions just don'= t get processed. > maybe, we should hack it in some way. > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" pref= ix=3D"rich"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix= =3D"p"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" pref= ix=3D"t"%> > > > > > >
> > > > > > > > dragValue=3D"#{item}"> > > > > > > > > > > > dropListener=3D"#{WeaponDropListener.processDrop}" > dropValue=3D"#{PjCreationDataBean.selectedItems}" reRender=3D"sItems= "> > > value=3D"#{PjCreationDataBean.selectedItems}" var=3D"item"> > > > > > > > > > >
> > > > > public class WeaponDropListener implements DropListener{ > = > public void processDrop(DropEvent event) { > Dropzone dropZone =3D (Dropzone) event.getComponent(); > ArrayList selected =3D (ArrayList) dropZone.getDropValu= e(); > System.err.print(selected.size()); > Object ob =3D event.getDragValue(); > System.out.println("DragValue " + event.getDragValue()); > System.out.println("DropValue " + event.getDropValue()); > if(ob =3D=3D null) > System.err.print("objeto nulo"); > selected.add((InitItem) event.getDragValue()); > = > } > } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= p://jira.jboss.com/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4067384735368750448==-- From jira-events at lists.jboss.org Fri May 2 21:25:25 2008 Content-Type: multipart/mixed; boundary="===============0026076204068950544==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Fri, 02 May 2008 21:25:25 -0400 Message-ID: <20291864.1209777925326.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com --===============0026076204068950544== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ http://jira.jboss.com/jira/browse/RF-961?page=3Dall ] Nick Belaevski updated RF-961: ------------------------------ Fix Version/s: Future (was: 3.2.2) > Drag'n Drop: dragValue is null, when dragging across different regions > ---------------------------------------------------------------------- > > Key: RF-961 > URL: http://jira.jboss.com/jira/browse/RF-961 > Project: RichFaces > Issue Type: Bug > Affects Versions: 3.1.0 > Reporter: Maksim Kaszynski > Assigned To: Nick Belaevski > Fix For: Future > > > On the following page, dragValue is null. > In terms of JSF concepts, everything is correct - other regions just don'= t get processed. > maybe, we should hack it in some way. > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" pref= ix=3D"rich"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix= =3D"p"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" pref= ix=3D"t"%> > > > > > >
> > > > > > > > dragValue=3D"#{item}"> > > > > > > > > > > > dropListener=3D"#{WeaponDropListener.processDrop}" > dropValue=3D"#{PjCreationDataBean.selectedItems}" reRender=3D"sItems= "> > > value=3D"#{PjCreationDataBean.selectedItems}" var=3D"item"> > > > > > > > > > >
> > > > > public class WeaponDropListener implements DropListener{ > = > public void processDrop(DropEvent event) { > Dropzone dropZone =3D (Dropzone) event.getComponent(); > ArrayList selected =3D (ArrayList) dropZone.getDropValu= e(); > System.err.print(selected.size()); > Object ob =3D event.getDragValue(); > System.out.println("DragValue " + event.getDragValue()); > System.out.println("DropValue " + event.getDropValue()); > if(ob =3D=3D null) > System.err.print("objeto nulo"); > selected.add((InitItem) event.getDragValue()); > = > } > } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= p://jira.jboss.com/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0026076204068950544==-- From jira-events at lists.jboss.org Tue Nov 25 11:03:37 2008 Content-Type: multipart/mixed; boundary="===============1150575052768764893==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Tue, 25 Nov 2008 11:03:37 -0500 Message-ID: <28354695.1227629017093.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com --===============1150575052768764893== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://jira.jboss.org/jira/browse/RF-961?page=3Dcom.atlassian.jira.= plugin.system.issuetabpanels:all-tabpanel ] Nick Belaevski updated RF-961: ------------------------------ Fix Version/s: 3.3.0 (was: Future) > Drag'n Drop: dragValue is null, when dragging across different regions > ---------------------------------------------------------------------- > > Key: RF-961 > URL: https://jira.jboss.org/jira/browse/RF-961 > Project: RichFaces > Issue Type: Bug > Affects Versions: 3.1.0 > Reporter: Maksim Kaszynski > Assignee: Nick Belaevski > Fix For: 3.3.0 > > > On the following page, dragValue is null. > In terms of JSF concepts, everything is correct - other regions just don'= t get processed. > maybe, we should hack it in some way. > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" pref= ix=3D"rich"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix= =3D"p"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" pref= ix=3D"t"%> > > > > > >
> > > > > > > > dragValue=3D"#{item}"> > > > > > > > > > > > dropListener=3D"#{WeaponDropListener.processDrop}" > dropValue=3D"#{PjCreationDataBean.selectedItems}" reRender=3D"sItems= "> > > value=3D"#{PjCreationDataBean.selectedItems}" var=3D"item"> > > > > > > > > > >
> > > > > public class WeaponDropListener implements DropListener{ > = > public void processDrop(DropEvent event) { > Dropzone dropZone =3D (Dropzone) event.getComponent(); > ArrayList selected =3D (ArrayList) dropZone.getDropValu= e(); > System.err.print(selected.size()); > Object ob =3D event.getDragValue(); > System.out.println("DragValue " + event.getDragValue()); > System.out.println("DropValue " + event.getDropValue()); > if(ob =3D=3D null) > System.err.print("objeto nulo"); > selected.add((InitItem) event.getDragValue()); > = > } > } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= ps://jira.jboss.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1150575052768764893==-- From jira-events at lists.jboss.org Fri Nov 28 11:18:37 2008 Content-Type: multipart/mixed; boundary="===============4733585151166268521==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Fri, 28 Nov 2008 11:18:37 -0500 Message-ID: <25223517.1227889117634.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com --===============4733585151166268521== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://jira.jboss.org/jira/browse/RF-961?page=3Dcom.atlassian.jira.= plugin.system.issuetabpanels:all-tabpanel ] Nick Belaevski updated RF-961: ------------------------------ Original Estimate: 1 day Remaining Estimate: 1 day Component/s: planning_all Due Date: 07/Dec/08 > Drag'n Drop: dragValue is null, when dragging across different regions > ---------------------------------------------------------------------- > > Key: RF-961 > URL: https://jira.jboss.org/jira/browse/RF-961 > Project: RichFaces > Issue Type: Bug > Components: planning_all > Affects Versions: 3.1.0 > Reporter: Maksim Kaszynski > Assignee: Nick Belaevski > Fix For: 3.3.0 > > Original Estimate: 1 day > Remaining Estimate: 1 day > > On the following page, dragValue is null. > In terms of JSF concepts, everything is correct - other regions just don'= t get processed. > maybe, we should hack it in some way. > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" pref= ix=3D"rich"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix= =3D"p"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" pref= ix=3D"t"%> > > > > > >
> > > > > > > > dragValue=3D"#{item}"> > > > > > > > > > > > dropListener=3D"#{WeaponDropListener.processDrop}" > dropValue=3D"#{PjCreationDataBean.selectedItems}" reRender=3D"sItems= "> > > value=3D"#{PjCreationDataBean.selectedItems}" var=3D"item"> > > > > > > > > > >
> > > > > public class WeaponDropListener implements DropListener{ > = > public void processDrop(DropEvent event) { > Dropzone dropZone =3D (Dropzone) event.getComponent(); > ArrayList selected =3D (ArrayList) dropZone.getDropValu= e(); > System.err.print(selected.size()); > Object ob =3D event.getDragValue(); > System.out.println("DragValue " + event.getDragValue()); > System.out.println("DropValue " + event.getDropValue()); > if(ob =3D=3D null) > System.err.print("objeto nulo"); > selected.add((InitItem) event.getDragValue()); > = > } > } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= ps://jira.jboss.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4733585151166268521==-- From jira-events at lists.jboss.org Thu Dec 4 11:49:37 2008 Content-Type: multipart/mixed; boundary="===============6519854858426267558==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Work started: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Thu, 04 Dec 2008 11:49:37 -0500 Message-ID: <12543742.1228409377373.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com --===============6519854858426267558== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://jira.jboss.org/jira/browse/RF-961?page=3Dcom.atlassian.jira.= plugin.system.issuetabpanels:all-tabpanel ] Work on RF-961 started by Nick Belaevski. > Drag'n Drop: dragValue is null, when dragging across different regions > ---------------------------------------------------------------------- > > Key: RF-961 > URL: https://jira.jboss.org/jira/browse/RF-961 > Project: RichFaces > Issue Type: Bug > Components: planning_all > Affects Versions: 3.1.0 > Reporter: Maksim Kaszynski > Assignee: Nick Belaevski > Fix For: 3.3.0 > > Original Estimate: 1 day > Remaining Estimate: 1 day > > On the following page, dragValue is null. > In terms of JSF concepts, everything is correct - other regions just don'= t get processed. > maybe, we should hack it in some way. > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" pref= ix=3D"rich"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix= =3D"p"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" pref= ix=3D"t"%> > > > > > >
> > > > > > > > dragValue=3D"#{item}"> > > > > > > > > > > > dropListener=3D"#{WeaponDropListener.processDrop}" > dropValue=3D"#{PjCreationDataBean.selectedItems}" reRender=3D"sItems= "> > > value=3D"#{PjCreationDataBean.selectedItems}" var=3D"item"> > > > > > > > > > >
> > > > > public class WeaponDropListener implements DropListener{ > = > public void processDrop(DropEvent event) { > Dropzone dropZone =3D (Dropzone) event.getComponent(); > ArrayList selected =3D (ArrayList) dropZone.getDropValu= e(); > System.err.print(selected.size()); > Object ob =3D event.getDragValue(); > System.out.println("DragValue " + event.getDragValue()); > System.out.println("DropValue " + event.getDropValue()); > if(ob =3D=3D null) > System.err.print("objeto nulo"); > selected.add((InitItem) event.getDragValue()); > = > } > } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= ps://jira.jboss.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6519854858426267558==-- From jira-events at lists.jboss.org Thu Dec 4 14:03:36 2008 Content-Type: multipart/mixed; boundary="===============3562841438541625398==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Thu, 04 Dec 2008 14:03:36 -0500 Message-ID: <6303262.1228417416743.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com --===============3562841438541625398== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://jira.jboss.org/jira/browse/RF-961?page=3Dcom.atlassian.jira.= plugin.system.issuetabpanels:all-tabpanel ] Nick Belaevski resolved RF-961. ------------------------------- Resolution: Done Assignee: Tsikhon Kuprevich (was: Nick Belaevski) > Drag'n Drop: dragValue is null, when dragging across different regions > ---------------------------------------------------------------------- > > Key: RF-961 > URL: https://jira.jboss.org/jira/browse/RF-961 > Project: RichFaces > Issue Type: Bug > Components: planning_all > Affects Versions: 3.1.0 > Reporter: Maksim Kaszynski > Assignee: Tsikhon Kuprevich > Fix For: 3.3.0 > > Original Estimate: 1 day > Remaining Estimate: 1 day > > On the following page, dragValue is null. > In terms of JSF concepts, everything is correct - other regions just don'= t get processed. > maybe, we should hack it in some way. > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" pref= ix=3D"rich"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix= =3D"p"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" pref= ix=3D"t"%> > > > > > >
> > > > > > > > dragValue=3D"#{item}"> > > > > > > > > > > > dropListener=3D"#{WeaponDropListener.processDrop}" > dropValue=3D"#{PjCreationDataBean.selectedItems}" reRender=3D"sItems= "> > > value=3D"#{PjCreationDataBean.selectedItems}" var=3D"item"> > > > > > > > > > >
> > > > > public class WeaponDropListener implements DropListener{ > = > public void processDrop(DropEvent event) { > Dropzone dropZone =3D (Dropzone) event.getComponent(); > ArrayList selected =3D (ArrayList) dropZone.getDropValu= e(); > System.err.print(selected.size()); > Object ob =3D event.getDragValue(); > System.out.println("DragValue " + event.getDragValue()); > System.out.println("DropValue " + event.getDropValue()); > if(ob =3D=3D null) > System.err.print("objeto nulo"); > selected.add((InitItem) event.getDragValue()); > = > } > } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= ps://jira.jboss.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3562841438541625398==-- From jira-events at lists.jboss.org Mon Dec 15 09:51:48 2008 Content-Type: multipart/mixed; boundary="===============5263901026828362953==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Reopened: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Mon, 15 Dec 2008 09:51:46 -0500 Message-ID: <21382601.1229352706971.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com --===============5263901026828362953== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://jira.jboss.org/jira/browse/RF-961?page=3Dcom.atlassian.jira.= plugin.system.issuetabpanels:all-tabpanel ] Nick Belaevski reopened RF-961: ------------------------------- Assignee: Nick Belaevski (was: Tsikhon Kuprevich) > Drag'n Drop: dragValue is null, when dragging across different regions > ---------------------------------------------------------------------- > > Key: RF-961 > URL: https://jira.jboss.org/jira/browse/RF-961 > Project: RichFaces > Issue Type: Bug > Components: planning_all > Affects Versions: 3.1.0 > Reporter: Maksim Kaszynski > Assignee: Nick Belaevski > Fix For: 3.3.0 > > Original Estimate: 1 day > Remaining Estimate: 1 day > > On the following page, dragValue is null. > In terms of JSF concepts, everything is correct - other regions just don'= t get processed. > maybe, we should hack it in some way. > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" pref= ix=3D"rich"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix= =3D"p"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" pref= ix=3D"t"%> > > > > > >
> > > > > > > > dragValue=3D"#{item}"> > > > > > > > > > > > dropListener=3D"#{WeaponDropListener.processDrop}" > dropValue=3D"#{PjCreationDataBean.selectedItems}" reRender=3D"sItems= "> > > value=3D"#{PjCreationDataBean.selectedItems}" var=3D"item"> > > > > > > > > > >
> > > > > public class WeaponDropListener implements DropListener{ > = > public void processDrop(DropEvent event) { > Dropzone dropZone =3D (Dropzone) event.getComponent(); > ArrayList selected =3D (ArrayList) dropZone.getDropValu= e(); > System.err.print(selected.size()); > Object ob =3D event.getDragValue(); > System.out.println("DragValue " + event.getDragValue()); > System.out.println("DropValue " + event.getDropValue()); > if(ob =3D=3D null) > System.err.print("objeto nulo"); > selected.add((InitItem) event.getDragValue()); > = > } > } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= ps://jira.jboss.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5263901026828362953==-- From jira-events at lists.jboss.org Mon Dec 15 13:16:54 2008 Content-Type: multipart/mixed; boundary="===============7274404232913822930==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Mon, 15 Dec 2008 13:16:54 -0500 Message-ID: <8523060.1229365014737.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com --===============7274404232913822930== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://jira.jboss.org/jira/browse/RF-961?page=3Dcom.atlassian.jira.= plugin.system.issuetabpanels:all-tabpanel ] Nick Belaevski updated RF-961: ------------------------------ Due Date: 21/Dec/08 (was: 07/Dec/08) > Drag'n Drop: dragValue is null, when dragging across different regions > ---------------------------------------------------------------------- > > Key: RF-961 > URL: https://jira.jboss.org/jira/browse/RF-961 > Project: RichFaces > Issue Type: Bug > Components: planning_all > Affects Versions: 3.1.0 > Reporter: Maksim Kaszynski > Assignee: Nick Belaevski > Fix For: 3.3.0 > > Original Estimate: 1 day > Remaining Estimate: 1 day > > On the following page, dragValue is null. > In terms of JSF concepts, everything is correct - other regions just don'= t get processed. > maybe, we should hack it in some way. > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" pref= ix=3D"rich"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix= =3D"p"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" pref= ix=3D"t"%> > > > > > >
> > > > > > > > dragValue=3D"#{item}"> > > > > > > > > > > > dropListener=3D"#{WeaponDropListener.processDrop}" > dropValue=3D"#{PjCreationDataBean.selectedItems}" reRender=3D"sItems= "> > > value=3D"#{PjCreationDataBean.selectedItems}" var=3D"item"> > > > > > > > > > >
> > > > > public class WeaponDropListener implements DropListener{ > = > public void processDrop(DropEvent event) { > Dropzone dropZone =3D (Dropzone) event.getComponent(); > ArrayList selected =3D (ArrayList) dropZone.getDropValu= e(); > System.err.print(selected.size()); > Object ob =3D event.getDragValue(); > System.out.println("DragValue " + event.getDragValue()); > System.out.println("DropValue " + event.getDropValue()); > if(ob =3D=3D null) > System.err.print("objeto nulo"); > selected.add((InitItem) event.getDragValue()); > = > } > } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= ps://jira.jboss.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7274404232913822930==-- From jira-events at lists.jboss.org Mon Dec 15 14:42:58 2008 Content-Type: multipart/mixed; boundary="===============4095736818901868295==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Mon, 15 Dec 2008 14:42:58 -0500 Message-ID: <24701805.1229370178236.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com --===============4095736818901868295== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://jira.jboss.org/jira/browse/RF-961?page=3Dcom.atlassian.jira.= plugin.system.issuetabpanels:all-tabpanel ] Nick Belaevski resolved RF-961. ------------------------------- Resolution: Done Assignee: Tsikhon Kuprevich (was: Nick Belaevski) > Drag'n Drop: dragValue is null, when dragging across different regions > ---------------------------------------------------------------------- > > Key: RF-961 > URL: https://jira.jboss.org/jira/browse/RF-961 > Project: RichFaces > Issue Type: Bug > Components: planning_all > Affects Versions: 3.1.0 > Reporter: Maksim Kaszynski > Assignee: Tsikhon Kuprevich > Fix For: 3.3.0 > > Original Estimate: 1 day > Remaining Estimate: 1 day > > On the following page, dragValue is null. > In terms of JSF concepts, everything is correct - other regions just don'= t get processed. > maybe, we should hack it in some way. > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" pref= ix=3D"rich"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix= =3D"p"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" pref= ix=3D"t"%> > > > > > >
> > > > > > > > dragValue=3D"#{item}"> > > > > > > > > > > > dropListener=3D"#{WeaponDropListener.processDrop}" > dropValue=3D"#{PjCreationDataBean.selectedItems}" reRender=3D"sItems= "> > > value=3D"#{PjCreationDataBean.selectedItems}" var=3D"item"> > > > > > > > > > >
> > > > > public class WeaponDropListener implements DropListener{ > = > public void processDrop(DropEvent event) { > Dropzone dropZone =3D (Dropzone) event.getComponent(); > ArrayList selected =3D (ArrayList) dropZone.getDropValu= e(); > System.err.print(selected.size()); > Object ob =3D event.getDragValue(); > System.out.println("DragValue " + event.getDragValue()); > System.out.println("DropValue " + event.getDropValue()); > if(ob =3D=3D null) > System.err.print("objeto nulo"); > selected.add((InitItem) event.getDragValue()); > = > } > } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= ps://jira.jboss.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4095736818901868295==-- From jira-events at lists.jboss.org Tue Jan 13 12:06:05 2009 Content-Type: multipart/mixed; boundary="===============4311495624180398590==" MIME-Version: 1.0 From: Mikhail Vitenkov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Closed: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions Date: Tue, 13 Jan 2009 12:06:05 -0500 Message-ID: <29871725.1231866365450.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 6971546.1190128931008.JavaMail.jira@cloud.prod.atl2.jboss.com --===============4311495624180398590== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://jira.jboss.org/jira/browse/RF-961?page=3Dcom.atlassian.jira.= plugin.system.issuetabpanels:all-tabpanel ] Mikhail Vitenkov closed RF-961. ------------------------------- Assignee: Mikhail Vitenkov (was: Tsikhon Kuprevich) Verified at 3.3.0.GA > Drag'n Drop: dragValue is null, when dragging across different regions > ---------------------------------------------------------------------- > > Key: RF-961 > URL: https://jira.jboss.org/jira/browse/RF-961 > Project: RichFaces > Issue Type: Bug > Components: planning_all > Affects Versions: 3.1.0 > Reporter: Maksim Kaszynski > Assignee: Mikhail Vitenkov > Fix For: 3.3.0 > > Original Estimate: 1 day > Remaining Estimate: 1 day > > On the following page, dragValue is null. > In terms of JSF concepts, everything is correct - other regions just don'= t get processed. > maybe, we should hack it in some way. > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/drag-drop" pref= ix=3D"rich"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/panel" prefix= =3D"p"%> > <%@ taglib uri=3D"http://labs.jboss.com/jbossrichfaces/ui/dataTable" pref= ix=3D"t"%> > > > > > >
> > > > > > > > dragValue=3D"#{item}"> > > > > > > > > > > > dropListener=3D"#{WeaponDropListener.processDrop}" > dropValue=3D"#{PjCreationDataBean.selectedItems}" reRender=3D"sItems= "> > > value=3D"#{PjCreationDataBean.selectedItems}" var=3D"item"> > > > > > > > > > >
> > > > > public class WeaponDropListener implements DropListener{ > = > public void processDrop(DropEvent event) { > Dropzone dropZone =3D (Dropzone) event.getComponent(); > ArrayList selected =3D (ArrayList) dropZone.getDropValu= e(); > System.err.print(selected.size()); > Object ob =3D event.getDragValue(); > System.out.println("DragValue " + event.getDragValue()); > System.out.println("DropValue " + event.getDropValue()); > if(ob =3D=3D null) > System.err.print("objeto nulo"); > selected.add((InitItem) event.getDragValue()); > = > } > } -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= ps://jira.jboss.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4311495624180398590==--