39 Adding Drag and Drop Functionality
panelDashboard
component.This chapter includes the following sections:
About Drag and Drop Functionality
Drag and drop functionality that you implement for ADF Faces components supports the end-user experience of interactively dragging a UI element, such as an attribute value or a UI component, and dropping it onto a supported target destination in the user interface of the displayed web page. Users of ADF applications can use ADF Faces drag and drop functionality that has been configured to work with attributes, objects, collections, components, calendars, and various DVT components.
The ADF Faces framework provides the ability to drag and drop items from one place to another on a page. In most cases, drag and drop can easily be implemented by adding the appropriate tags to the source and target and implementing code in a managed bean. Drag and drop provides users with the GUI experience that is expected in web applications. For example, in the File Explorer application, you can drag a file from the Table tab and drop it into another directory folder, as shown in Figure 39-1.
Figure 39-1 Drag and Drop in the File Explorer Application

In this scenario, you are actually dragging an object from one collection (Folder0) and dropping it into another collection (Folder2). This is one of the many supported drag and drop scenarios. ADF Faces supports the following scenarios:
-
Dragging an attribute value from one component instance and copying it to another. For example, a user might be able to drag an
outputText
component onto aninputText
component, which would result in thevalue
attribute of theoutputText
component becoming thevalue
attribute on theinputText
component. -
Dragging the value of one object and dropping it so that it becomes the value of another object. For example, a user might be able to drag an
outputText
component onto anotheroutputText
component, which would result in an array ofString
objects populating thetext
attribute of the secondoutputText
component. -
Dragging an object from one collection and dropping it into another, as shown in Figure 39-1.
-
Dragging a component from one place on a page to another. For example, a user might be able to drag an existing
panelBox
component to a new place within apanelGrid
component. -
Dragging an activity in a calendar from one start time or date to another.
-
Dragging a component into or out of a
panelDashboard
component. -
Dropping an object from another component into a DVT Pareto or stock graph.
-
Dragging an object from a DVT Gantt chart to another component.
-
Dragging a node from or dropping an object to DVT treemap and sunburst components.
-
Dragging and dropping one or more nodes within DVT hierarchy viewers, dragging one or more nodes from a hierarchy viewer to another component, or dragging from one or more components to a hierarchy viewer.
-
Dragging and dropping an event from a DVT timeline to a collection component such as a table, or dragging and dropping a row from a table of time-based events into a timeline.
When users click on a source and begin to drag, the browser displays the element being dragged as a ghost element attached to the mouse pointer. Once the ghost element hovers over a valid target, the target component shows some feedback (for example, it becomes highlighted and the cursor changes to indicate the target is valid). If the user drags the ghost element over an invalid target, the cursor changes to indicate that the target is not valid.
When dragging attribute values, the user can only copy the value to the target. For all other drag and drop scenarios, on the drop, the element can be copied (copy and paste), moved (cut and paste), or linked (creating a shortcut for a file in a directory in which the link is a reference to the real file object).
The component that will be dragged and that contains the value is called the source. The component that will accept the drop is called the target. You use a specific tag as a child to the source and target components that tells the framework to allow the drop. Table 39-1 shows the different drag and drop scenarios, the valid source(s) and target(s), and the associated tags to be used for that scenario.
Table 39-1 Drag and Drop Scenarios
Scenario | Source | Target |
---|---|---|
Dragging an attribute value |
An attribute value on a component |
An attribute value on another component, as long as it is the same object type |
Tag: |
Tag: |
|
Dragging an object from one component to another |
Any component |
Any component |
Tag: |
Tag: |
|
Dragging an item from one collection and dropping it into another |
|
|
Tag: |
Tag: |
|
Dragging a component from one container to another |
Any component |
Any component |
Tag: |
Tag: |
|
Dragging a calendar activity from one start time or date to another |
|
|
Tag: None needed |
Tag: |
|
Dragging a |
|
|
Tag: |
Tag: |
|
Dragging a |
|
Any component |
Tag: |
Tag: |
|
Dropping an object from another component into a Pareto or stock graph. |
Any component |
|
Tag: |
Tag: |
|
Dragging an object from a DVT Gantt chart and dropping it on another component |
Gantt chart |
Any component |
Tag: |
Tag: |
|
Dragging a node from a DVT hierarchy viewer, sunburst, or treemap and dropping it on another component |
|
Any component |
Tag: |
Tag: |
|
Dragging an event from a timeline and dropping it into a collection component |
|
|
Tag: |
Tag: |
You can restrict the type of the object that can be dropped on a target by adding a dataFlavor
tag. This helps when the target can accept only one object type, but the source may be one of a number of different types. The dataFlavor
tag also allows you to set multiple types so that the target can accept objects from more than one source or from a source that may contain more than one type. For the drop to be successful, both the target and the source must contain the dataFlavor
tag, and both the Java type that the dataFlavor
encapsulates along with the discriminant need to be same between the source and the target.
Note:
Drag and drop functionality is not supported between windows. Any drag that extends past the window boundaries will be canceled. Drag and drop functionality is supported between popup windows and the base page for the popup.
Also note that drag and drop functionality is not accessible; that is, there are no keyboard strokes that can be used to execute a drag and drop. Therefore, if your application requires all functionality to be accessible, you must provide this logic. For example, your page might also present users with a method for selecting objects and a Move button or menu item that allows them to move those selected objects.
Additional Functionality for Drag and Drop
You may find it helpful to understand other ADF Faces features before you implement drag and drop. Following are links to other sections that may be useful for implementing drag and drop.
-
Managed beans: You may be using managed beans for your code. For information about using managed beans, see Creating and Using Managed Beans.
-
Events: Table and tree components fire both server-side and client-side events that you can have your application react to by executing some logic. For more information, see Handling Events.
Adding Drag and Drop Functionality for Attributes
You can enable ADF Faces drag and drop functionality for attribute values of ADF Faces components. Drag and drop functionality that you implement for ADF Faces components supports the end-user experience of interactively dragging the attribute value of one component and dropping it onto a supported target component in the user interface of the displayed web page.
You add drag and drop functionality for attributes by defining one component's attribute to be a target and another component's attribute to be a source.
Note:
The target and source attribute values must both be the same data type. For example, attribute drag and drop is available when both the source and target are of type String. If they are both of type number, they both use the same converters.
How to add Drag and Drop Functionality
You can drag and drop your target and source components that are already on the JSF page.
Before you begin:
It may be helpful to have an understanding of drag and drop functionality. For more information, see Adding Drag and Drop Functionality for Attributes.
You may also find it helpful to understand functionality that can be added using other ADF Faces features. For more information, see Additional Functionality for Drag and Drop.
To add drag and drop functionality for attributes:
- In the Components window, from the Operations panel, in the Drag and Drop group, drag and drop an Attribute Drop Target as a child to the target component on the page.
- In the Insert Attribute Drop Target dialog, use the Attribute dropdown to select the attribute that will be populated by the drag and drop action. This dropdown list shows all valid attributes on the target component.
- In the Components window, from the Operations panel, in the Drag and Drop group, drag and drop an Attribute Drag Source as a child to the component that can provide a value for the target.
- In the Insert Attribute Drag Source dialog, use the Attribute dropdown to select the attribute whose value will be used to populate the target attribute. This dropdown list shows all valid attributes on the source component.
Adding Drag and Drop Functionality for Objects
You can enable ADF Faces drag and drop functionality for objects that are not attribute values displayed by ADF Faces components. Drag and drop functionality that you implement for ADF Faces components supports the end-user experience of interactively dragging the value of an object and dropping it onto a supported target object in the user interface of the displayed web page.
When you want users to be able to drag things other than attribute values, or you want users to be able to do something other than copy attributes from one component to another, you use the dropTarget
tag. Additionally, use the DataFlavor
object to determine the valid Java types of sources for the drop target. Because there may be several drop targets and drag sources, you can further restrict valid combinations by using discriminant values. You also must implement any required functionality in response to the drag and drop action.
For example, suppose you have an outputText
component with an array of Strings
and you want the user to be able to drag the outputText
component to a panelBox
component and have the panelBox
display the String
array
, as shown in Figure 39-2.
Figure 39-2 Dragging and Dropping an Array Object

The outputText
component contains an attributeDragSource
tag. However, because you want to drag an array
of String
values from the outputText
component, you must use the dropTarget
tag instead of the attributeDropTarget
tag on the target outputText
component. Also use a dataFlavor
tag to ensure that only an array
object will be accepted on the target.
You can also define a discriminant value for the dataFlavor
tag. This is helpful if you have two targets and two sources, all with the same object type. By creating a discriminant value, you can be sure that each target will accept only valid sources. For example, suppose you have two targets that both accept an EMPLOYEE object, TargetA and TargetB. Suppose you also have two sources, both of which are EMPLOYEE objects. By setting a discriminant value on TargetA with a value of alpha
, only the EMPLOYEE source that provides the discriminant value of alpha
will be accepted.
You also must implement a listener for the drop event. The object of the drop event is called the Transferable
, which contains the payload of the drop. Your listener must access the Transferable
object, and from there, use the DataFlavor
object to verify that the object can be dropped. You then use the drop event to get the target component and update the property with the dropped object. More details about this listener are covered in the procedure in Adding Drag and Drop Functionality for DVT Components..
How to Add Drag and Drop Functionality for a Single Object
To add drag and drop functionality, first add tags to a component that define it as a target for a drag and drop action. Then implement the event handler method that will handle the logic for the drag and drop action. Last, you define the sources for the drag and drop.
Before you begin:
It may be helpful to have an understanding of drag and drop functionality. For more information, see Adding Drag and Drop Functionality for Objects.
You may also find it helpful to understand functionality that can be added using other ADF Faces features. For more information, see Additional Functionality for Drag and Drop.
You will need to complete this task:
- Create the source and target components on the page.
To add drag and drop functionality:
What Happens at Runtime: How to Use Keyboard Modifiers
When performing a drag and drop operation, users can press keys on the keyboard (called keyboard modifiers) to select the action they wish to take on a drag and drop. The drag and drop framework supports the following keyboard modifiers:
-
SHIFT: MOVE
-
CTRL: COPY
-
CTRL+SHIFT: LINK
When a user executes the drag and drop operation, the drop target first determines that it can accept the drag source's data flavor value. Next, if the source and target are collections, the framework intersects the actions allowed between the drag source and drop target and executes the action (one of COPY, MOVE, or LINK) in that order from the intersection. When there is only one valid action, that action is executed. When there is more than one possible action and the user's keyboard modifier matches that choice, then that is the one that is executed. If either no keyboard modifier is used, or the keyboard modifier used does not match an allowed action, then the framework chooses COPY, MOVE, LINK in that order, from the set of allowed actions.
For example, suppose you have a drop target that supports COPY and MOVE. First the drop target determines that drag source is a valid data flavor. Next, it determines which action to perform when the user performs the drop. In this example, the set is COPY and MOVE. If the user holds down the SHIFT
key while dragging (the keyboard modifier for MOVE), the framework would choose the MOVE action. If the user is doing anything other than holding down the SHIFT
key when dragging, the action will be COPY because COPY is the default when no modifier key is chosen (it is first in the order). If the user is pressing the CTRL key, that modifier matches COPY, so COPY would be performed. If the user was pressing the CTRL+SHIFT keys, the action would still be COPY because that modifier matches the LINK action which is not in the intersected set of allowed actions.
Note:
Because information is lost during the roundtrip between Java and JavaScript, the data in the drop may not be the type that you expect. For example, all numeric types appear as double
objects, char
objects appear as String
objects, List
and Array
objects appear as List
objects, and most other objects appear as Map
objects. For more information, see What You May Need to Know About Marshalling and Unmarshalling Data..
What You May Need to Know About Using the ClientDropListener
The dropTarget
tag contains the clientDropListener
attribute where you can reference JavaScript that will handle the drop event on the client. The client handler should not take any parameters and return an AdfDnDContext
action. For example, if the method returns AdfDnDContext.ACTION_NONE
the drop operation will be canceled and no server call will be made; if the method returns AdfDnDContext.ACTION_COPY,
a copy operation will be allowed and a server call will be made which will execute the dropListener
method if it exists.
For example, suppose you want to log a message when the drop event is invoked. You might create a client handler to handle logging that message and then returning the correct action so that the server listener is invoked. The following example shows a client handler that uses the logger to print a message.
<script> /** * Shows a message. */ function showMessage() { AdfLogger.LOGGER.logMessage(AdfLogger.ALL, "clientDropListener handler, copying..."); return AdfDnDContext.ACTION_COPY; } </script>
Adding Drag and Drop Functionality for Collections
You can enable ADF Faces drag and drop functionality for collections displayed by ADF Faces components. Drag and drop functionality that you implement for ADF Faces components supports the end-user experience of interactively dragging an object from one collection and dropping it onto a supported target collection in the user interface of the displayed web page.
You use the collectionDropTarget
and dragSource
tags to add drag and drop functionality that allows users to drag an item from one collection (for example, a row from a table), and drop it into another collection component such, as a tree. For example, in the File Explorer application, users can drag a file from the table that displays directory contents to any folder in the directory tree. Figure 39-3 shows the File0.doc
object being dragged from the table displaying the contents of the Folder0
directory to the Folder3
directory. Once the drop is complete, the object will become part of the collection that makes up Folder3
.
Figure 39-3 Drag and Drop Functionality in the File Explorer Application

As with dragging and dropping single objects, you can have a drop on a collection with a copy, move, or copy and paste as a link (or a combination of the three), and use dataFlavor
tags to limit what a target will accept.
When the target source is a collection and it supports the move operation, you may also want to also implement a method for the dragDropEndListener
attribute, which is referenced from the source component and is used to clean up the collection after the drag and drop operation. See What You May Need to Know About the dragDropEndListener.
How to Add Drag and Drop Functionality for Collections
To add drag and drop functionality for collections, instead of using the dropTarget
tag, you use the collectionDropTarget
tag. You then must implement the event handler method that will handle the logic for the drag and drop action. Next, you define the source for the drag and drop operation using the dragSource
tag.
Before you begin:
It may be helpful to have an understanding of drag and drop functionality. For more information, see Adding Drag and Drop Functionality for Collections.
You may also find it helpful to understand functionality that can be added using other ADF Faces features. For more information, see Additional Functionality for Drag and Drop.
You will also need to create the source and target components on the page.
To add drag and drop functionality:
What You May Need to Know About the dragDropEndListener
There may be cases when after a drop event, you have to clean up the source collection. For example, if the drag caused a move, you may have to clean up the source component so that the moved item is no longer part of the collection.
The dragSource
tag contains the dragDropEndListener
attribute that allows you to register a handler that contains logic for after the drag drop operation ends.
For example, if you allow a drag and drop to move an object, you may have to physically remove the object from the source component once you know the drop succeeded. The following example shows a handler for a dragDropEndListener
attribute
public void endListener(DropEvent dropEvent) { Transferable transferable = dropEvent.getTransferable(); // The data in the transferrable is the row key for the dragged component. DataFlavor<RowKeySet> rowKeySetFlavor = DataFlavor.getDataFlavor(RowKeySet.class, "DnDDemoModel"); RowKeySet rowKeySet = transferable.getData(rowKeySetFlavor); if (rowKeySet != null) { Integer currKey = (Integer)rowKeySet.iterator().next(); // Remove the dragged data from the source model directly. // getSourceValues() represents a collection object used by the source // component Object removed = getSourceValues().remove(currKey.intValue()); } // Need to add the drag source table so it gets redrawn. // The drag source component needs to be partially refreshed explicitly, while // drop target component automatically refreshed and displayed. AdfFacesContext.getCurrentInstance().addPartialTarget(dropEvent.getDragComponent());
Adding Drag and Drop Functionality for Components
You can enable ADF Faces drag and drop functionality for entire ADF Faces components. Drag and drop functionality that you implement for ADF Faces components supports the end-user experience of interactively dragging a component and dropping it somewhere else in the user interface of the displayed web page.
You can allow components to be moved from one parent to another, or you can allow child components of a parent component to be reordered. For example, Figure 39-4 shows the darker panelBox
component being moved from being the first child component of the panelGrid
component to the last.
Figure 39-4 Drag and Drop Functionality Between Components

Note:
If you want to move components into or out of a panelDashboard component, then you need to use procedures specific to that component. See Adding Drag and Drop Functionality Into and Out of a panelDashboard Component.
How to Add Drag and Drop Functionality for Components
Adding drag and drop functionality for components is similar for objects. However, instead of using the attributeDragSource
tag, use the componentDragSource
tag. As with dragging and dropping objects or collections, you also must implement a dropListener
handler.
Before you begin:
It may be helpful to have an understanding of drag and drop functionality. For more information, see Adding Drag and Drop Functionality for Components.
You may also find it helpful to understand functionality that can be added using other ADF Faces features. For more information, see Additional Functionality for Drag and Drop.
To add drag and drop functionality:
Adding Drag and Drop Functionality Into and Out of a panelDashboard Component
You can enable ADF Faces drag and drop functionality within panelDashboard
ADF Faces components. Drag and drop functionality that you implement for ADF Faces panelDashboard
components supports the end-user experience of interactively dragging a component into or out of the panelDashboard
in the user interface of the displayed web page.
By default the panelDashboard
component supports dragging and dropping components within itself. That is, you can reorder components in a panelDashboard
component without needing to implement a listener or use additional tags. However, if you want to be able to drag a component into a panelDashboard
component, or to drag a component out of a panelDashboard
component, you do need to use tags and implement a listener. Because you would be dragging and dropping a component, you use the componentDragSource
tag when dragging into the panelDashboard
. However, because the panelDashboard
already supports being a drop target, you do not need to use the dropTarget
tag. Instead, you need to use a dataFlavor
tag with a discriminant. The tag and discriminant notify the framework that the drop is from an external component.
Dragging a component out of a panelDashboard
is mostly the same as dragging and dropping any other component. You use a dropTarget
tag for the target and the componentDragSource
tag for the source. However, you must also use the dataFlavor
tag and a discriminant.
How to Add Drag and Drop Functionality Into a panelDashboard Component
Because the panelDashboard
component has built-in drag and drop functionality used to reorder panelBox
components within the dashboard, you need not use a dropTarget
tag, but you do need to use a dataFlavor
tag with a discriminant and implement the dropListener
. In that implementation, you need to handle the reorder of the components.
Before you begin:
It may be helpful to have an understanding of drag and drop functionality. For more information, see Adding Drag and Drop Functionality Into and Out of a panelDashboard Component.
You may also find it helpful to understand functionality that can be added using other ADF Faces features. For more information, see Additional Functionality for Drag and Drop.
Before you begin:
-
Create a
panelDashboard
component. For more information, see Arranging Contents in a Dashboard. -
Create another component outside of the
panelDashboard
that containspanelBox
components. For more information aboutpanelBox
components, see How to Use the panelBox Component.
To add drag and drop functionality into a panelDashboard component:
- In the Structure window, select the
panelDashboard
component that is to be the target component. - In the Properties window, for DropListener, enter an expression that evaluates to a method on a managed bean that will handle the drop event (you will create this code in Step 6).
- In the Components window, from the Operations panel, in the Drag and Drop group, drag a Data Flavor and drop it as a child to the
panelDashboard
component. - In the Insert Data Flavor dialog, enter
javax.faces.component.UIComponent
. - In the Properties window, set Discriminant to a unique name that will identify the components allowed to be dragged into the
panelDashboard
component, for example,dragIntoDashboard
. - In the Components window, from the Operations panel, in the Drag and Drop group, drag a Component Drag Source and drop it as a child to the
panelBox
component that will be the source component. - In the Properties window, set Discriminant to be the same value as entered for the Discriminant on the
panelDashboard
in Step 5.
How to Add Drag and Drop Functionality Out of a panelDashboard Component
Implementing drag and drop functionality out of a panelDashboard
component is similar to standard drag and drop functionality for other components, except that you must use a dataFlavor
tag with a discriminant.
Before you begin:
It may be helpful to have an understanding of drag and drop functionality. For more information, see Adding Drag and Drop Functionality Into and Out of a panelDashboard Component.
You may also find it helpful to understand functionality that can be added using other ADF Faces features. For more information, see Additional Functionality for Drag and Drop.
How to add drag and drop functionality out of a panelDashboard component:
Adding Drag and Drop Functionality to a Calendar
You can enable ADF Faces drag and drop functionality for ADF Faces calendar components. Drag and drop functionality that you implement for ADF Faces calendar components supports the end-user experience of interactively dragging an activity in a calendar from one start time or date to another in the user interface of the displayed web page.
The calendar includes functionality that allows users to drag the handle of an activity to change the end time. However, if you want users to be able to drag and drop an activity to a different start time, or even a different day, then you implement drag and drop functionality. Drag and drop allows you to not only move an activity, but also to copy one.
How to Add Drag and Drop Functionality to a Calendar
You add drag and drop functionality by using the calendarDropTarget
tag. Unlike dragging and dropping a collection, there is no need for a source tag; the target (that is the object to which the activity is being moved, in this case, the calendar) is responsible for moving the activities. If the source (that is, the item to be moved or copied), is an activity within the calendar, then you use only the calendarDropTarget tag. The tag expects the Transferable
to be a CalendarActivity
object.
However, you can also drag and drop objects from outside the calendar. When you want to enable this, use dataFlavor
tags configured to allow the source object (which will be something other than a calendarActivity
object) to be dropped.
Before you begin:
It may be helpful to have an understanding of drag and drop functionality. For more information, see Adding Drag and Drop Functionality to a Calendar.
You may also find it helpful to understand functionality that can be added using other ADF Faces features. For more information, see Additional Functionality for Drag and Drop.
To add drag and drop functionality to a calendar:
What You May Need to Know About Dragging and Dropping in a Calendar
For dragging and dropping activities within a calendar, users can drag and drop only within a view. That is, users can drag an activity from one time slot to another in the day view, but cannot cut an activity from a day view and paste it into a month view.
When the user is dragging and dropping activities in the day or week view, the calendar marks the drop site by half-hour increments. The user cannot move any all-day or multi-day activities in the day view.
In the week view, users can move all-day and multi-day activities, however, they can be dropped only within other all-day slots. That is, the user cannot change an all-day activity to an activity with start and end times. In the month view, users can move all-day and multi-day activities to any other day.
Adding Drag and Drop Functionality for DVT Components
You can enable ADF Faces drag and drop functionality for a variety of Data Visualization Technology (DVT) components. Drag and drop functionality that you implement for ADF Faces DVT components supports the end-user experience of interactively dragging elements of DVT components or the components themselves and dropping them within the user interface of the displayed web page.
You can configure drag and drop functionality for the following DVT components:
-
Pareto and stock graphs (drop target only)
-
Gantt charts
-
Hierarchy viewers
-
Sunbursts
-
Thematic Maps
-
Timelines
-
Treemaps
DVT components use essentially the same process as dragging and dropping other ADF Faces components. However, DVT components may impose limitations on the items that you can drag to or drop from the component.
As with dragging and dropping objects or collections, you must also implement a dropListener
handler to respond to the drop requests. The object of the drop event is called the Transferable
, which contains the payload of the drop. Your listener must access the Transferable
object, and from there, use the DataFlavor
object to verify that the object can be dropped. You then use the drop event to get the target component and update the property with the dropped object.
Adding Drop Functionality for DVT Pareto and Stock Graphs
Pareto and stock graphs can be configured as a drop target to allow drops from other ADF components. For example, you can configure a stock graph to allow drops from an ADF table cell.
How to Add Drop Functionality to Pareto and Stock Graphs
To configure a Pareto or stock graph as a drop target, add the af:dropTarget
tag as a child of the Pareto or stock Graph, and add a method in a managed bean to respond to the drop event. The following example shows a sample drop listener for a graph configured to accept drops from an ADF table.
You must also configure the ADF Faces component, object, or collection as a drag source and define the method that will respond to the drag.
Before you begin:
It may be helpful to have an understanding of drag and drop functionality. For more information, see About Drag and Drop Functionality.
You must complete the following tasks:
-
Add a Pareto or stock graph to your page.
For help with creating the DVT components, see Introduction to ADF Data Visualization Components.
-
If you plan to allow drops to the DVT component, add the component that will serve as the drag source to the page.
For help with adding other ADF Faces components, see ADF Faces Components.
-
Create the method that will listen for drops on the graph. For information about using managed beans, see Creating and Using Managed Beans.
To configure a Pareto or stock graph as a drop target:
Example 39-1 Managed Bean Sample for Handling Drag and Drop Target
public class dragAndDrop { public DnDAction fromTableDropListener(DropEvent event) { Transferable transferable = event.getTransferable(); DataFlavor<RowKeySet> dataFlavor = DataFlavor.getDataFlavor(RowKeySet.class, "fromTable"); RowKeySet set = transferable.getData(dataFlavor); Employee emp = null; if(set != null && !set.isEmpty()) { int index = (Integer) set.iterator().next(); emp = m_tableModel.get(index); } if(emp == null) return DnDAction.NONE; DnDAction proposedAction = event.getProposedAction(); if(proposedAction == DnDAction.COPY) { m_graphList.add(emp); } else if(proposedAction == DnDAction.LINK) { m_graphList.add(emp); } else if(proposedAction == DnDAction.MOVE) { m_graphList.add(emp); m_tableModel.remove(emp); } else return DnDAction.NONE; RequestContext.getCurrentInstance().addPartialTarget(event.getDragComponent()); return event.getProposedAction(); }
You also must implement a listener for the drop event. The object of the drop event is called the Transferable
, which contains the payload of the drop. Your listener must access the Transferable
object, and from there, use the DataFlavor
object to verify that the object can be dropped. You then use the drop event to get the target component and update the property with the dropped object.
Adding Drag and Drop Functionality for DVT Gantt Charts
When you want users to be able to drag and drop between Gantt charts and other components, you use the dragSource
and dropTarget
tags. Additionally, you use the DataFlavor
object to determine the valid Java types of sources for the drop target. You also must implement any required functionality in response to the drag and drop action. Both the projectGantt
and schedulingGantt
components support drag and drop functionality.
For example, suppose you have an projectGantt
component and you want the user to be able to drag one time bucket to a treeTable
component and have that component display information about the time bucket, as shown in Figure 39-5.
Figure 39-5 Dragging and Dropping an Object

The projectGantt
component contains a dragSource
tag. And because the user will drag the whole object and not just the String
value of the output text that is displayed, you use the dropTarget
tag instead of the attributeDropTarget
tag.
You also use a dataFlavor
tag to determine the type of object being dropped. On this tag, you can define a discriminant value. This is helpful if you have two targets and two sources, all with the same object type. By creating a discriminant value, you can be sure that each target will accept only valid sources. For example, suppose you have two targets that both accept an TaskDragInfo
object, TargetA and TargetB. Suppose you also have two sources, both of which are TaskDragInfo
objects. By setting a discriminant value on TargetA with a value of alpha
, only the TaskDragInfo
source that provides the discriminant value of alpha
will be accepted.
You also must implement a listener for the drop event. The object of the drop event is called the Transferable
, which contains the payload of the drop. Your listener must access the Transferable
object, and from there, use the DataFlavor
object to verify that the object can be dropped. You then use the drop event to get the target component and update the property with the dropped object.
How to Add Drag and Drop Functionality for a DVT Gantt Component
To add drag and drop functionality, first add tags to a component that define it as a target for a drag and drop action. Then implement the event handler method that will handle the logic for the drag and drop action. Last, you define the sources for the drag and drop. For information about what happens at runtime, see What Happens at Runtime: How to Use Keyboard Modifiers. For information about using the clientDropListener
attribute, see What You May Need to Know About Using the ClientDropListener.
Before you begin:
It may be helpful to have an understanding of drag and drop functionality. For more information, see About Drag and Drop Functionality.
You must complete the following tasks:
-
Add the DVT component to your page.
For help with creating the DVT components, see Introduction to ADF Data Visualization Components.
-
If you plan to allow drops to the DVT component, add the component that will serve as the drag source to the page.
For help with adding other ADF Faces components, see ADF Faces Components.
-
If you plan on allowing drags from the DVT component to another component, add the component that will serve as the drop target to the page.
To add drag and drop functionality:
Adding Drag and Drop Functionality for DVT Hierarchy Viewers, Sunbursts, and Treemaps
You can configure hierarchy viewers, sunbursts, and treemaps as drag sources and drop targets for drag and drop operations between supported components on a page.
Drag and Drop Example for DVT Hierarchy Viewers
Hierarchy viewers support the following drag and drop operations:
-
Drag and drop one or more nodes within a hierarchy viewer
-
Drag one or more nodes from a hierarchy viewer to another component
-
Drag one or more items from another component to a hierarchy viewer
Figure 39-6 shows a hierarchy viewer configured to allow drags and drops within itself. If you click and hold a node for more than one-half second, you can drag it to the background to make it another root in the hierarchy or drag it to another node to add it as a child of that node.
Figure 39-6 Hierarchy Viewer Showing a Node Drag

In this example, if you drag the node to another node, the dragged node and its children become the child of the targeted node. Figure 39-7 shows the result of the drag to the node containing the data for Nina Evans. Nancy Green and her subordinates are now shown as subordinates to Nina Evans.
Figure 39-7 Hierarchy Viewer After Node Drag to Another Node

Drag and Drop Example for DVT Sunbursts
Sunbursts support the drag of one or more nodes to another component. The payload of the drag is a org.apache.myfaces.trinidad.model.RowKeySet
. You can also configure sunbursts to accept drops from another object.
Figure 39-8 shows a sunburst configured to allow drags from it to an af:outputFormatted
component. If the sunburst is configured for multiple selection, the user can drag multiple nodes using the Ctrl+click operation.
Figure 39-8 Sunburst Configured as a Drag Source

Drag and Drop Example for DVT Treemaps
Treemaps support the drag of one or more nodes to another component. The payload of the drag is a org.apache.myfaces.trinidad.model.RowKeySet
. You can also configure treemaps to accept drops from another object.
Figure 39-9 shows a treemap configured as a drop target. In this example, the drag source is an af:outputFormatted
component.
Figure 39-9 Treemap Configured as a Drop Target

How to Add Drag and Drop Functionality for a DVT Hierarchy Viewer, Sunburst, or Treemap Component
To add drag and drop functionality, first add tags to a supported DVT component that define it as a target for a drag and drop action. Then implement the event handler method that will handle the logic for the drag and drop action. Last, you define the sources for the drag and drop. For information about what happens at runtime, see What Happens at Runtime: How to Use Keyboard Modifiers. For information about using the clientDropListener
attribute, see What You May Need to Know About Using the ClientDropListener.
Before you begin:
It may be helpful to have an understanding of drag and drop functionality. For more information, see About Drag and Drop Functionality.
You must complete the following tasks:
-
Add the DVT component to your page.
For help with creating the DVT components, see Introduction to ADF Data Visualization Components.
-
If you plan to allow drops to the DVT component, add the component that will serve as the drag source to the page.
For help with adding other ADF Faces components, see ADF Faces Components.
-
If you plan on allowing drags from the DVT component to another component, add the component that will serve as the drop target to the page.
To add drag and drop functionality to a DVT hierarchy viewer, sunburst, or treemap component:
-
To configure the DVT component as a drop target, do the following:
-
In the Components window, from the Operations panel, drag a Drop Target tag and drop it as a child to a DVT component that supports drag and drop.
-
In the Insert Drop Target dialog, enter an expression that evaluates to a drop listener method on a managed bean that will handle the event (you will create this code in Step 1.f).
Tip:
You can also intercept the drop on the client by populating the
clientDropListener
attribute. For more information, see What You May Need to Know About Using the ClientDropListener.. -
In the Insert Data Flavor dialog, enter the class for the object that can be dropped onto the target, for example
java.lang.Object
. This selection will be used to create adataFlavor
tag, which determines the type of object that can be dropped onto the target. MultipledataFlavor
tags are allowed under a single drop target to allow the drop target to accept any of those types.Tip:
To specify a typed array in a
DataFlavor
tag, add brackets ([]) to the class name, for example,java.lang.Object[]
. -
In the Properties window, set a value for Discriminant, if needed. A discriminant is an arbitrary string used to determine which source can drop on the target. For example, suppose you have two treemaps that both accept a
java.lang.Object
, Treemap A and Treemap B. You also have two sources, both of which arejava.lang.Object
objects. By setting a discriminant value on GraphA with a value ofalpha
, only thejava.lang.Object
source that provides the discriminant value ofalpha
will be accepted. -
In the Structure window, select the
dropTarget
tag. In the Properties window, select a value for Actions. This defines what actions are supported by the drop target. Valid values can beCOPY
(copy and paste),MOVE
(cut and paste), andLINK
(copy and paste as a link), for example:.MOVE COPY
If no actions are specified, the default is
COPY
.The following example shows the code for a treemap component that accepts a
java.lang.Object
as a drag source. Note that becauseCOPY
was set as the value for Actions, that will be the only allowed action.<dvt:treemap id="t1" value="#{treemap.censusData}" var="row" displayLevelsChildren="3" colorLabel="Median Household Income sizeLabel="Population" summary="Treemap Configured as Drag Source" legendSource="ag1"> <dvt:treemapNode id="tn1" value="#{row.size}" label="#{row.text}"> <dvt:attributeGroups id="ag1" value="#{row.income > 50000}" label="#{row.income > 50000 ? 'High Income' : 'Low Income'}" type="color"/> </dvt:treemapNode> <af:dropTarget dropListener="#{treemap.toDropListener}" actions="COPY"> <af:dataFlavor flavorClass="java.lang.Object"/> </af:dropTarget> </dvt:treemap>
-
In the managed bean referenced in the EL expression created in Step 1.b, create the event handler method (using the same name as in the EL expression) that will handle the drag and drop functionality.
This method must take a
DropEvent
event as a parameter and return aDnDAction
object, which is the action that will be performed when the source is dropped. Valid return values areDnDAction.COPY
,DnDAction.
MOVE
,and DnDAction.LINK
, and were set when you defined the target attribute in Step 1.e. This method should check theDropEvent
event to determine whether or not it will accept the drop. If the method accepts the drop, it should perform the drop and return theDnDAction
object it performed. Otherwise, it should returnDnDAction.NONE
to indicate that the drop was rejected.The method must also check for the presence for each
dataFlavor
object in preference order.Tip:
If your target has more than one defined
dataFlavor
object, then you can use theTransferable.getSuitableTransferData()
method, which returns aList
ofTransferData
objects available in theTransferable
object in order, from highest suitability to lowest.The
DataFlavor
object defines the type of data being dropped, for examplejava.lang.Object
, and must be as defined in theDataFlavor
tag on the JSP, as created in Step 1.c.Tip:
To specify a typed array in a
DataFlavor
object, add brackets ([]) to the class name, for example,java.lang.Object[].
DataFlavor
objects support polymorphism so that if the drop target acceptsjava.util.List
, and theTransferable
object contains ajava.util.ArrayList
, the drop will succeed. Likewise, this functionality supports automatic conversion betweenArrays
andLists
.If the drag and drop framework doesn't know how to represent a server
DataFlavor
object on the client component, the drop target will be configured to allow all drops to succeed on the client.The following example shows a handler method that copies a
java.lang.Object
from the event payload and assigns it to the component that initiated the event.// imports needed by methods import java.util.Map; import oracle.adf.view.rich.dnd.DnDAction; import oracle.adf.view.rich.event.DropEvent; import oracle.adf.view.rich.datatransfer.DataFlavor; import oracle.adf.view.rich.datatransfer.Transferable; import org.apache.myfaces.trinidad.context.RequestContext; import org.apache.myfaces.trinidad.render.ClientRowKeyManager; import javax.faces.context.FacesContext; import oracle.adf.view.faces.bi.component.treemap.UITreemap; import javax.faces.component.UIComponent; // variables need by methods private String dragText = "Drag this text onto a node"; // drop listener public DnDAction toDropListener(DropEvent event) { Transferable transferable = event.getTransferable(); DataFlavor<Object> dataFlavor = DataFlavor.getDataFlavor(Object.class); Object transferableObj = transferable.getData(dataFlavor); if(transferableObj == null) return DnDAction.NONE; // Build up the string that reports the drop information StringBuilder sb = new StringBuilder(); // Start with the proposed action sb.append("Drag Operation: "); DnDAction proposedAction = event.getProposedAction(); if(proposedAction == DnDAction.COPY) { sb.append("Copy<br>"); } else if(proposedAction == DnDAction.LINK) { sb.append("Link<br>"); } else if(proposedAction == DnDAction.MOVE) { sb.append("Move<br>"); } // Then add the rowKeys of the nodes that were dragged UIComponent dropComponent = event.getDropComponent(); Object dropSite = event.getDropSite(); if(dropSite instanceof Map) { String clientRowKey = (String) ((Map) dropSite).get("clientRowKey"); Object rowKey = getRowKey(dropComponent, clientRowKey); if(rowKey != null) { sb.append("Drop Site: "); sb.append(getLabel(dropComponent, rowKey)); } } // Update the output text this.dragText = sb.toString(); RequestContext.getCurrentInstance().addPartialTarget(event.getDragComponent()); return event.getProposedAction(); } public String getDragText() { return dragText; } private String getLabel(UIComponent component, Object rowKey) { if(component instanceof UITreemap) { UITreemap treemap = (UITreemap) component; TreeNode rowData = (TreeNode) treemap.getRowData(rowKey); return rowData.getText(); } return null; } private Object getRowKey(UIComponent component, String clientRowKey) { if(component instanceof UITreemap) { UITreemap treemap = (UITreemap) component; ClientRowKeyManager crkm = treemap.getClientRowKeyManager(); return crkm.getRowKey(FacesContext.getCurrentInstance(), component, clientRowKey); } return null; }
-
-
To configure the DVT component as a drag source, do the following:
-
In the Components window, from the Operations panel, drag and drop a Drag Source as a child to the DVT component.
-
With the
dragSource
tag selected, in the Properties window, set the allowed Actions and any needed discriminant, as configured for the target.
The following example shows the JSP code for a treemap configured as a drag source. Note that all actions (
COPY
,MOVE
, andLINK
) are permitted.<dvt:treemap id="t1" value="#{treemap.censusData}" var="row" displayLevelsChildren="3" colorLabel="Median Household Income sizeLabel="Population" summary="Treemap Configured as Drag Source" legendSource="ag1"> <dvt:treemapNode id="tn1" value="#{row.size}" label="#{row.text}"> <dvt:attributeGroups id="ag1" value="#{row.income > 50000}" label="#{row.income > 50000 ? 'High Income' : 'Low Income'}" type="color"/> </dvt:treemapNode> <af:dragSource defaultAction="MOVE" actions="COPY MOVE LINK"/> </dvt:treemap>
-
-
To use the DVT component as the drop target which will allow drags to it from another component, in the Components window, from the Operations panel, drag and drop a Drag Source as a child to the component that will be the source of the drag.
For example, drag and drop a Drag Source as a child to an
af:outputFormatted
component to display node information about a treemap. With thedragSource
tag selected, in the Properties window, set the allowed Actions and any needed discriminant for the target. -
To add the DVT component as a drag source for another supported DVT or ADF Faces component, do the following:
-
In the Components window, from the Operations panel, drag and drop a Drop Target onto the component that will receive the drop.
For example, drag and drop a Drop Target onto a
treeTable
component. -
In the Insert Drop Target dialog, enter the name of a drop listener that the component will use to respond to the DVT component drop.
See the examples in this chapter for sample listeners.
-
In the Insert Data Flavor dialog, enter the object that the drop target will accept. Alternatively, use the dropdown menu to navigate through the object hierarchies and choose the desired object.
For example, if you want the user to be able to drag a treemap node to a
treeTable
component and have that component display information about the treemap, enter the following for the data flavor:org.apache.myfaces.trinidad.model.RowKeySet
. -
In the Structure window, right-click the
af:dropTarget
component and choose Go to Properties. -
In the Properties window, in the Actions field, enter a list of the operations that the drop target will accept, separated by spaces. Allowable values are:
COPY
,MOVE
, orLINK
. If you do not specify a value, the drop target will useCOPY.
The following example shows the sample code for an
af:outputFormatted
component configured to allow dragging from a treemap.<af:outputFormatted value="#{treemap.dropText}" id="of1"> <af:dropTarget dropListener="#{treemap.fromDropListener}"> <af:dataFlavor flavorClass="org.apache.myfaces.trinidad.model.RowKeySet"/> </af:dropTarget> </af:outputFormatted>
-
Adding Drag and Drop Functionality for Timeline Components
You can configure timelines as a drop target or drag source between collection components on a page. For example, you can drag an item from one collection such as a row from a table, and drop it into a timeline, or drag an event from a timeline and drop it into a table.
Figure 39-10 shows a timeline configured to allow drags and drops between the events in a timeline and a row in a table.
Figure 39-10 Timeline Configured for Drag and Drop Between a Table

To add drag and drop functionality, first add tags to a supported DVT component that define it as a target for a drag and drop action. Then implement the event handler method that will handle the logic for the drag and drop action. Last, you define the sources for the drag and drop. For information about what happens at runtime, see What Happens at Runtime: How to Use Keyboard Modifiers. For information about using the clientDropListener
attribute, see What You May Need to Know About Using the ClientDropListener.
Before you begin:
It may be helpful to have an understanding of drag and drop functionality. For more information, see About Drag and Drop Functionality.
You must complete the following tasks:
-
Add the DVT component to your page.
For help with creating the DVT components, see Introduction to ADF Data Visualization Components.
-
If you plan to allow drops to the DVT component, add the component that will serve as the drag source to the page.
For help with adding other ADF Faces components, see ADF Faces Components.
-
If you plan on allowing drags from the DVT component to another component, add the component that will serve as the drop target to the page.
To add drag and drop support to a timeline:
-
In the Structure window, right-click the
timeline
component, and select Insert Inside Timeline > Drop Target. -
In the Insert Drop Target dialog, enter the name of the drop listener or use the dropdown menu to choose Edit to add a drop listener method to the timeline's managed bean. Alternatively, use the dropdown menu to choose Expression Builder and enter an EL Expression for the drop listener.
For example, to add a method named
handleDropOnTimeline()
on a managed bean nameddnd
, choose Edit, select dnd from the dropdown menu, and click New on the right of the Method field to create thehandleDropOnTimeline()
method.The following example shows the sample drop listener and supporting methods for the timeline displayed in Figure 39-10.
// imports needed by methods import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; import javax.faces.bean.RequestScoped; import oracle.adf.view.rich.datatransfer.DataFlavor; import oracle.adf.view.rich.datatransfer.Transferable; import oracle.adf.view.rich.dnd.DnDAction; import oracle.adf.view.rich.event.DropEvent; import org.apache.myfaces.trinidad.context.RequestContext; import org.apache.myfaces.trinidad.model.CollectionModel; import org.apache.myfaces.trinidad.model.ModelUtils; import org.apache.myfaces.trinidad.model.RowKeySet; // drop listener public DnDAction handleDropOnTimeline(DropEvent event) { Date _date = (Date)event.getDropSite(); Transferable _transferable = event.getTransferable(); RowKeySet _rowKeySet = _transferable.getData(DataFlavor.ROW_KEY_SET_FLAVOR); Object _rowKey = _rowKeySet.iterator().next(); EmpEvent _event = (EmpEvent)m_tableModel.getRowData(_rowKey); _event.setDate(_date); orderInsert(_event); RequestContext.getCurrentInstance().addPartialTarget (event.getDragComponent()); return DnDAction.COPY; } private void orderInsert(EmpEvent event) { int _index = -1; ArrayList _list = (ArrayList)m_timelineModel.getWrappedData(); for (int i=0; i<_list.size(); i++) { EmpEvent _current = (EmpEvent)_list.get(i); if (event.getDate().before(_current.getDate())) { _index = i; break; } } if (_index == -1) _list.add(event); else _list.add(_index, event); ArrayList _list2 = (ArrayList)m_tableModel.getWrappedData(); _list2.remove(event); }
-
Click OK, and in the Insert Data Flavor dialog, enter
org.apache.myfaces.trinidad.model.RowKeySet
. -
In the Structure window, right-click the
af:dropTarget
component and choose Go to Properties to set the following attributes in the Properties window:-
Actions: Enter a list of the operations that the drop target will accept, separated by spaces. Allowable values are:
COPY
,MOVE
, orLINK
. If you do not specify a value, the drop target will useCOPY
. -
Discriminant: Specify the model name shared by the drop target and drag source for compatibility purposes. The value of this attribute must match the value of the of the
discriminant
attribute of theaf:dragSource
component you will set for the collection component receiving the drags from the timeline.
-
-
To configure another collection component as the drag source for drops into the timeline, do the following:
-
In the Components window, from the Operations panel, drag and drop a Drag Source tag as a child to the component that will be the source of the drag.
For example, drag and drop a Drag Source tag as a child to an
af:table
component. -
In the Properties window, for the component's Actions field, enter a list of the operations that the drop target will accept, separated by spaces.
-
For the component's Discriminant field, specify the model name shared by the drop target and drag source for compatibility purposes.
-
-
To configure the timeline as a drag source, in the Components window, from the Operations panel, drag and drop a Drag Source tag as a child to the timeline.
-
In the Structure window, right-click the
af:dragSource
component and choose Go to Properties to set the following attributes in the Properties window:-
Actions: Enter a list of the operations that the collection drop target component will accept, separated by spaces.
-
Discriminant: Specify the name of the model shared by the drag source and collection drop target for compatibility purposes. The value of this attribute must match the value of the of the
modelName
attribute of theaf:collectionDropTarget
component you will set for the collection component receiving the drags from the timeline.
-
-
To make another collection component the drop target for drops from the timeline, do the following:
-
In the Components window, from the Operations panel, drag and drop a Collection Drop Target onto the component that will receive the drop.
For example, drag and drop a Collection Drop Target as a child to an
af:table
component that displays the results of the drop. -
In the Insert Drop Target dialog, enter the name of the drop listener or use the dropdown menu to choose Edit to add a drop listener method to the appropriate managed bean.
The following example shows the sample drop listener for the timeline displayed in Figure 39-10. This example uses the same imports and helper methods used in the previous example, and they are not included here.
//Drop Listener public DnDAction handleDropOnTable(DropEvent event) { Integer _dropSite = (Integer)event.getDropSite(); Transferable _transferable = event.getTransferable(); RowKeySet _rowKeySet = _transferable.getData(DataFlavor.ROW_KEY_SET_FLAVOR); Object _rowKey = _rowKeySet.iterator().next(); EmpEvent _event = (EmpEvent)m_timelineModel.getRowData(_rowKey); ArrayList _list = (ArrayList)m_tableModel.getWrappedData(); _list.add(_dropSite.intValue(), _event); ArrayList _list2 = (ArrayList)m_timelineModel.getWrappedData(); _list2.remove(_event); RequestContext.getCurrentInstance().addPartialTarget (event.getDragComponent()); return DnDAction.COPY; } private static Date parseDate(String date) { Date ret = null; try { ret = s_format.parse(date); } catch (ParseException e) { e.printStackTrace(); } return ret; }
-
Click OK, and in the Insert Data Flavor dialog, enter
org.apache.myfaces.trinidad.model.RowKeySet
. -
In the Structure window, right-click the
af:dropTarget
component and choose Go to Properties. -
In the Properties window, in the Actions field, enter a list of the operations that the drop target will accept, separated by spaces.
-
In the ModelName field, define the model for the collection.The value of the
modelName
attribute is a String object used to identify the drag source for compatibility purposes. The value of this attribute must match the value of thediscriminant
attribute of theaf:dragSource
component.
-
The following example shows the JSF page sample code for the ADF Faces Components Demo application illustrated in Figure 39-10. For additional information about the af:table
component, see Using Tables, Trees, and Other Collection-Based Components.
<dvt:timeline id="tl1" startTime="2010-01-01" endTime="2011-12-31" inlineStyle="width:800px;height:400px" itemSelection="single"> <f:attribute name="horizontalFetchSizeOverride" value="3000"/> <dvt:timelineSeries id="ts1" var="evt" value="#{dnd.timelineModel}"> <dvt:timelineItem id="ti1" value="#{evt.date}" group="#{evt.group}"> <af:panelGroupLayout id="pg1" layout="horizontal"> <af:image id="img1" inlineStyle="width:30px;height:30px" source="/resources/images/timeline/employment.png"/> <af:spacer width="3"/> <af:panelGroupLayout id="pg2" layout="vertical"> <af:outputText id="ot1" inlineStyle="color:#084B8A" value="#{evt.description}" noWrap="true"/> <af:outputText id="ot2" value="#{evt.date}" inlineStyle="color:#6e6e6e" noWrap="true"> <af:convertDateTime dateStyle="medium"/> </af:outputText> </af:panelGroupLayout> </af:panelGroupLayout> </dvt:timelineItem> <af:dragSource actions="COPY" discriminant="model"/> <af:dropTarget actions="COPY" dropListener="#{dnd.handleDropOnTimeline}"> <af:dataFlavor flavorClass="org.apache.myfaces.trinidad.model.RowKeySet" discriminant="model2"/> </af:dropTarget> </dvt:timelineSeries> <dvt:timeAxis id="ta1" scale="weeks"/> <dvt:timelineOverview id="ov1"> <dvt:timeAxis id="ta2" scale="years"/> </dvt:timelineOverview </dvt:timeline> <af:table var="row" value="#{dnd.tableModel}" rowSelection="single" inlineStyle="width:370px;height:400px"> <af:column headerText="ID" width="20"> <af:outputText value="#{row.id}"/> </af:column> <af:column headerText="Event" width="340"> <af:outputText value="#{row.description}"/> </af:column> <af:dragSource actions="COPY" discriminant="model2"/> <af:collectionDropTarget actions="COPY" modelName="model" dropListener="#{dnd.handleDropOnTable}"/> </af:table>