DragDrop
Tag resourceDropZone


Description

This tag identifies an area on the page that will react when a draggable resource is dropped.

Examples

The following example will create a drop zone that will trigger a pageflow action named "moveContent". The runtime value of folder.id can be used to identify the targeted drop zone.

<dragdrop:resourceDropZone pageFlowAction="moveContent" targetId="${folder.id}">
  ...
</dragdrop:resourceDropZone>

The next example will trigger a JavaScipt function call named "moveContent". The runtime value of folder.id can be obtained in the JavaScript by using the getTargetId() utility function.

<dragdrop:resourceDropZone jsFunctionCall="moveContent" targetId="${folder.id}">
  ...
</dragdrop:resourceDropZone>


Tag Information
Tag Classcom.bea.apps.groupspace.taglib.dragdrop.ResourceDropZone
TagExtraInfo ClassNone
Body ContentNone
Display NameResource Drop Zone

Attributes
NameRequiredRequest-timeDescription
targetIdtruetrue The unique identifier of the drop zone object. This should be an id that can be used by the underlying business logic to uniquely identify what object recieved the drop action.
jsFunctionCallfalsetrue A Javascript function that will be executed when a draggableResource is dropped on this resourceDropZone.
formActionfalsetrue A valid JSP or Servlet that will recieve a POST action when a draggableResource is dropped on this resourceDropZone.
pageFlowActionfalsetrue A valid pageflow action that will be initiated when a draggableResource is dropped on this resourceDropZone.
renderSpansfalsetrue If set to false (which is default), html will render using div tags. If set to true, html will render using span tags. Can be used for browser compatability issues during rendering.

Variables
No Variables Defined.


Output Generated by Tag Library Documentation Generator.

Copyright © 2008, ${product.vendor} and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.