Author: nbelaevski
Date: 2007-04-08 15:39:08 -0400 (Sun, 08 Apr 2007)
New Revision: 320
Modified:
trunk/richfaces-samples/tree-demo/src/main/java/org/richfaces/Bean.java
Log:
Drag/drop row data diagnostic output added
Modified: trunk/richfaces-samples/tree-demo/src/main/java/org/richfaces/Bean.java
===================================================================
--- trunk/richfaces-samples/tree-demo/src/main/java/org/richfaces/Bean.java 2007-04-06
19:44:09 UTC (rev 319)
+++ trunk/richfaces-samples/tree-demo/src/main/java/org/richfaces/Bean.java 2007-04-08
19:39:08 UTC (rev 320)
@@ -295,6 +295,8 @@
System.out.println(dropEvent);
System.out.println("DragValue: " + dropEvent.getDragValue());
System.out.println("DropValue: " + dropEvent.getDropValue());
+ System.out.println("Drag row data: " +
getTree(dropEvent).getRowData(dropEvent.getDragValue()));
+ System.out.println("Drop row data: " +
getTree(dropEvent).getRowData(dropEvent.getDropValue()));
System.out.println("+++++");
}
Show replies by date