• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/8

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

8 Cards in this Set

  • Front
  • Back
How to setup drang and drop for advance controls
dragEnabled = "true" and dropEnabled="true"
Describe the drag initiator
Initiation of a drag-and-drop operation occurs when a "drag-enabled" component is selected with the mouse and moved while holding down the mouse button. The component selected and dragged is called the drag initiator.
Describe the drag source
Contains the data being dragged. It also provides additional drag management features, such as the ability to add a handler that is called when data is requested.
Describe the drag proxy
The displayed image of drag operations
Describe the drop target
A component that can handle dropped item
Drag events of the drag target
dragEnter >> dragOver >> dragDrop >> DragExit
Drag events of the Drag initiator
MouseDown and MouseMove, dragComplete when finished
How to cancel default behavour of an event?
event.preventDefault();