Uses of Class
org.odlabs.wiquery.ui.core.JsScopeUiEvent

Packages that use JsScopeUiEvent
org.odlabs.wiquery.ui.accordion   
org.odlabs.wiquery.ui.autocomplete   
org.odlabs.wiquery.ui.core   
org.odlabs.wiquery.ui.datepicker   
org.odlabs.wiquery.ui.dialog   
org.odlabs.wiquery.ui.draggable   
org.odlabs.wiquery.ui.droppable   
org.odlabs.wiquery.ui.progressbar   
org.odlabs.wiquery.ui.resizable   
org.odlabs.wiquery.ui.selectable   
org.odlabs.wiquery.ui.slider   
org.odlabs.wiquery.ui.sortable   
org.odlabs.wiquery.ui.tabs   
 

Uses of JsScopeUiEvent in org.odlabs.wiquery.ui.accordion
 

Methods in org.odlabs.wiquery.ui.accordion with parameters of type JsScopeUiEvent
 Accordion Accordion.setChangeEvent(JsScopeUiEvent change)
          Set's the callback when the accordion changes.
 Accordion Accordion.setChangeStartEvent(JsScopeUiEvent changestart)
          Set's the callback when the accordion starts to change.
 

Uses of JsScopeUiEvent in org.odlabs.wiquery.ui.autocomplete
 

Methods in org.odlabs.wiquery.ui.autocomplete with parameters of type JsScopeUiEvent
 Autocomplete<T> Autocomplete.setChangeEvent(JsScopeUiEvent change)
          After an item was selected; ui.item refers to the selected item.
 Autocomplete<T> Autocomplete.setCloseEvent(JsScopeUiEvent close)
          When the list is hidden - doesn't have to occur together with a change.
 Autocomplete<T> Autocomplete.setFocusEvent(JsScopeUiEvent focus)
          Before focus is moved to an item (not selecting), ui.item refers to the focused item.
 Autocomplete<T> Autocomplete.setOpenEvent(JsScopeUiEvent open)
          After a request with the data ready, before it is actually displayed; also indicates the suggestion menu will be opened.
 Autocomplete<T> Autocomplete.setSearchEvent(JsScopeUiEvent search)
          Before a request (source-option) is started, after minLength and delay are met.
 Autocomplete<T> Autocomplete.setSelectEvent(JsScopeUiEvent select)
          Triggered when an item is selected from the menu; ui.item refers to the selected item.
 

Uses of JsScopeUiEvent in org.odlabs.wiquery.ui.core
 

Subclasses of JsScopeUiEvent in org.odlabs.wiquery.ui.core
 class DefaultJsScopeUiEvent
          Default implementation of the JsScopeUiEvent
 

Methods in org.odlabs.wiquery.ui.core that return JsScopeUiEvent
static JsScopeUiEvent JsScopeUiEvent.quickScope(CharSequence javascriptCode)
          Creates a default JsScopeUiEvent to execute the given statement.
static JsScopeUiEvent JsScopeUiEvent.quickScope(JsStatement jsStatement)
          Creates a default JsScopeUiEvent to execute the given statement.
 

Uses of JsScopeUiEvent in org.odlabs.wiquery.ui.datepicker
 

Methods in org.odlabs.wiquery.ui.datepicker with parameters of type JsScopeUiEvent
 DatePicker<T> DatePicker.setBeforeShowEvent(JsScopeUiEvent beforeShow)
          Set's the callback before the datepicker is displayed.
 InlineDatePicker<T> InlineDatePicker.setBeforeShowEvent(JsScopeUiEvent beforeShow)
          Set's the callback before the datepicker is displayed.
 void DatePickerOptions.setBeforeShowEvent(JsScopeUiEvent beforeShow)
          Set's the callback before the datepicker is displayed.
 

Uses of JsScopeUiEvent in org.odlabs.wiquery.ui.dialog
 

Methods in org.odlabs.wiquery.ui.dialog with parameters of type JsScopeUiEvent
 Dialog Dialog.setBeforeCloseEvent(JsScopeUiEvent beforeclose)
          Deprecated. will be removed when we will used jquery ui 1.9 (see ticket http://dev.jqueryui.com/ticket/4669)
 Dialog Dialog.setCloseEvent(JsScopeUiEvent close)
          Set's the callback before the dialog is closed.
 Dialog Dialog.setDragEvent(JsScopeUiEvent drag)
          Set's the callback when the dialog is dragged.
 Dialog Dialog.setDragStartEvent(JsScopeUiEvent dragStart)
          Set's the callback when the dialog is being dragged.
 Dialog Dialog.setDragStopEvent(JsScopeUiEvent dragStop)
          Set's the callback when the dialog has been dragged.
 Dialog Dialog.setFocusEvent(JsScopeUiEvent focus)
          Set's the callback when the dialog gains focus.
 Dialog Dialog.setOpenEvent(JsScopeUiEvent open)
          Set's the callback before the dialog is opening.
 Dialog Dialog.setResizeEvent(JsScopeUiEvent resize)
          Set's the callback when the dialog is resized.
 Dialog Dialog.setResizeStartEvent(JsScopeUiEvent resizeStart)
          Set's the callback when the dialog is being resized.
 Dialog Dialog.setResizeStopEvent(JsScopeUiEvent resizeStop)
          Set's the callback when the dialog has been resized.
 

Uses of JsScopeUiEvent in org.odlabs.wiquery.ui.draggable
 

Methods in org.odlabs.wiquery.ui.draggable with parameters of type JsScopeUiEvent
 DraggableBehavior DraggableBehavior.setDragEvent(JsScopeUiEvent drag)
          Set's the callback when the mouse is moved during the dragging
 DraggableBehavior DraggableBehavior.setStartEvent(JsScopeUiEvent start)
          Set's the callback when the user starts dragging.
 DraggableBehavior DraggableBehavior.setStopEvent(JsScopeUiEvent stop)
          Set's the callback when the user stops dragging.
 

Uses of JsScopeUiEvent in org.odlabs.wiquery.ui.droppable
 

Methods in org.odlabs.wiquery.ui.droppable with parameters of type JsScopeUiEvent
 DroppableBehavior DroppableBehavior.setActivateEvent(JsScopeUiEvent activate)
          Set's the callback when an accepted draggable starts dragging.
 DroppableBehavior DroppableBehavior.setDeactivateEvent(JsScopeUiEvent deactivate)
          Set's the callback when an accepted draggable stops dragging.
 DroppableBehavior DroppableBehavior.setDropEvent(JsScopeUiEvent drop)
          Set's the callback when an accepted draggable is dropped 'over' (within the tolerance of) this droppable.
 DroppableBehavior DroppableBehavior.setOutEvent(JsScopeUiEvent out)
          Set's the callback when an accepted draggable is dragged out (within the tolerance of) this droppable.
 DroppableBehavior DroppableBehavior.setOverEvent(JsScopeUiEvent over)
          Set's the callback when an accepted draggable is dragged 'over' (within the tolerance of) this droppable.
 

Uses of JsScopeUiEvent in org.odlabs.wiquery.ui.progressbar
 

Methods in org.odlabs.wiquery.ui.progressbar with parameters of type JsScopeUiEvent
 ProgressBar ProgressBar.setChangeEvent(JsScopeUiEvent change)
          Set's the callback when the value of the progressBar changes.
 

Uses of JsScopeUiEvent in org.odlabs.wiquery.ui.resizable
 

Methods in org.odlabs.wiquery.ui.resizable with parameters of type JsScopeUiEvent
 ResizableBehavior ResizableBehavior.setResizeEvent(JsScopeUiEvent resize)
          Set's the callback when the event is triggered during the resize, on the drag of the resize handler.
 ResizableBehavior ResizableBehavior.setStartEvent(JsScopeUiEvent start)
          Set's the callback when the event is triggered at the start of a resize operation.
 ResizableBehavior ResizableBehavior.setStopEvent(JsScopeUiEvent stop)
          Set's the callback when the event is triggered at the end of a resize operation.
 

Uses of JsScopeUiEvent in org.odlabs.wiquery.ui.selectable
 

Methods in org.odlabs.wiquery.ui.selectable with parameters of type JsScopeUiEvent
 SelectableBehavior SelectableBehavior.setSelectedEvent(JsScopeUiEvent selected)
          Set's the selected event This event is triggered at the end of the select operation, on each element added to the selection.
 SelectableBehavior SelectableBehavior.setSelectingEvent(JsScopeUiEvent selecting)
          Set's the selecting event This event is triggered during the select operation, on each element added to the selection.
 SelectableBehavior SelectableBehavior.setStartEvent(JsScopeUiEvent start)
          Set's the start event This event is triggered at the beginning of the select operation.
 SelectableBehavior SelectableBehavior.setStopEvent(JsScopeUiEvent stop)
          Set's the stop event This event is triggered at the end of the select operation.
 SelectableBehavior SelectableBehavior.setUnselectedEvent(JsScopeUiEvent unselected)
          Set's the unselected event This event is triggered at the end of the select operation, on each element removed from the selection.
 SelectableBehavior SelectableBehavior.setUnselectingEvent(JsScopeUiEvent unselecting)
          Set's the unselecting event This event is triggered during the select operation, on each element removed from the selection.
 

Uses of JsScopeUiEvent in org.odlabs.wiquery.ui.slider
 

Methods in org.odlabs.wiquery.ui.slider with parameters of type JsScopeUiEvent
 Slider Slider.setChangeEvent(JsScopeUiEvent change)
          This event is triggered on slide stop, or if the value is changed programmatically (by the value method).
 Slider Slider.setSlideEvent(JsScopeUiEvent slide)
          This event is triggered on every mouse move during slide.
 Slider Slider.setStartEvent(JsScopeUiEvent start)
          Set's the callback when when the user starts sliding.
 Slider Slider.setStopEvent(JsScopeUiEvent stop)
          Set's the callback when when the user stops sliding.
 

Uses of JsScopeUiEvent in org.odlabs.wiquery.ui.sortable
 

Methods in org.odlabs.wiquery.ui.sortable with parameters of type JsScopeUiEvent
 SortableBehavior SortableBehavior.setActivateEvent(JsScopeUiEvent activate)
          Set's the callback when using connected lists, every connected list on drag start receives it.
 SortableBehavior SortableBehavior.setBeforeStopEvent(JsScopeUiEvent beforeStop)
          Set's the callback when sorting stops, but when the placeholder/helper is still available.
 SortableBehavior SortableBehavior.setChangeEvent(JsScopeUiEvent change)
          Set's the callback during sorting, but only when the DOM position has changed.
 SortableBehavior SortableBehavior.setDeactivateEvent(JsScopeUiEvent deactivate)
          Set's the callback when sorting was stopped, is propagated to all possible connected lists.
 SortableBehavior SortableBehavior.setOutEvent(JsScopeUiEvent out)
          Set's the callback when a sortable item is moved away from a connected list.
 SortableBehavior SortableBehavior.setOverEvent(JsScopeUiEvent over)
          Set's the callback when a sortable item is moved into a connected list.
 SortableBehavior SortableBehavior.setReceiveEvent(JsScopeUiEvent receive)
          Set's the callback when a connected sortable list has received an item from another list.
 SortableBehavior SortableBehavior.setRemoveEvent(JsScopeUiEvent remove)
          Set's the callback when a sortable item has been dragged out from the list and into another.
 SortableBehavior SortableBehavior.setSortEvent(JsScopeUiEvent sort)
          Set's the callback during sorting
 SortableBehavior SortableBehavior.setStartEvent(JsScopeUiEvent start)
          Set's the callback when sorting starts
 SortableBehavior SortableBehavior.setStopEvent(JsScopeUiEvent stop)
          Set's the callback when sorting has stopped.
 SortableBehavior SortableBehavior.setUpdateEvent(JsScopeUiEvent update)
          Set's the callback when the user stopped sorting and the DOM position has changed.
 

Uses of JsScopeUiEvent in org.odlabs.wiquery.ui.tabs
 

Methods in org.odlabs.wiquery.ui.tabs with parameters of type JsScopeUiEvent
 Tabs Tabs.setAddEvent(JsScopeUiEvent add)
          Set the callback when a tab is added
 Tabs Tabs.setDisableEvent(JsScopeUiEvent disable)
          Set the callback when a tab is disabled
 Tabs Tabs.setEnableEvent(JsScopeUiEvent enable)
          Set the callback when a tab is enabled
 Tabs Tabs.setLoadEvent(JsScopeUiEvent load)
          Set the callback when the content of a remote tab has been loaded
 Tabs Tabs.setRemoveEvent(JsScopeUiEvent remove)
          Set the callback when a tab is removed
 Tabs Tabs.setSelectEvent(JsScopeUiEvent select)
          Set the callback when the user is clicking the tab
 Tabs Tabs.setShowEvent(JsScopeUiEvent show)
          Set the callback when a tab is shown
 



Copyright © 2012. All Rights Reserved.