|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of JsScope in org.odlabs.wiquery.core.ajax |
---|
Methods in org.odlabs.wiquery.core.ajax with parameters of type JsScope | |
---|---|
JQueryAjaxOption |
JQueryAjaxOption.setBeforeSendEvent(JsScope beforeSend)
A pre-callback to modify the XMLHttpRequest object before it is sent. |
JQueryAjaxOption |
JQueryAjaxOption.setCompleteEvent(JsScope complete)
A function to be called when the request finishes (after success and error callbacks are executed). |
JQueryAjaxOption |
JQueryAjaxOption.setDataFilterEvent(JsScope dataFilter)
A function to be used to handle the raw responsed data of XMLHttpRequest. |
JQueryAjaxOption |
JQueryAjaxOption.setErrorEvent(JsScope error)
A function to be called if the request fails. |
JQueryAjaxOption |
JQueryAjaxOption.setSuccessEvent(JsScope success)
A function to be called if the request succeeds. |
JQueryAjaxOption |
JQueryAjaxOption.setXhrEvent(JsScope xhr)
Callback for creating the XMLHttpRequest object. |
Uses of JsScope in org.odlabs.wiquery.core.effects |
---|
Methods in org.odlabs.wiquery.core.effects that return JsScope | |
---|---|
JsScope |
Effect.effectCallback()
The JavaScript code to execute after the effect is over. |
JsScope |
Animate.getComplete()
|
JsScope |
Animate.getStep()
|
Methods in org.odlabs.wiquery.core.effects with parameters of type JsScope | |
---|---|
void |
Effect.setCallback(JsScope callback)
Sets the callback of this effect. |
Animate |
Animate.setComplete(JsScope complete)
Set the complete option |
Animate |
Animate.setStep(JsScope step)
Set the step option |
Constructors in org.odlabs.wiquery.core.effects with parameters of type JsScope | |
---|---|
Animate(Map<String,String> properties,
AnimateDuration duration,
String easing,
JsScope callback)
Constructor |
|
Effect(EffectSpeed effectSpeed,
JsScope callback,
CharSequence... parameters)
Creates a new effect. |
Uses of JsScope in org.odlabs.wiquery.core.events |
---|
Methods in org.odlabs.wiquery.core.events that return JsScope | |
---|---|
abstract JsScope |
Event.callback()
Returns an non null executable JsScope . |
Uses of JsScope in org.odlabs.wiquery.core.javascript |
---|
Subclasses of JsScope in org.odlabs.wiquery.core.javascript | |
---|---|
class |
JsScopeEvent
$Id$ This class represent a JsScope event for the JQuery scope event The javascript representation will be like this: |
Methods in org.odlabs.wiquery.core.javascript that return JsScope | |
---|---|
static JsScope |
JsScope.quickScope(CharSequence javascriptCode)
Creates a default JsScope to execute the given statement. |
static JsScope |
JsScope.quickScope(JsStatement jsStatement)
Creates a default JsScope to execute the given statement. |
Methods in org.odlabs.wiquery.core.javascript with parameters of type JsScope | |
---|---|
JsStatement |
JsStatement.attr(String key,
JsScope computedValue)
Binds the attr statement. |
JsStatement |
JsStatement.each(JsScope scope)
Appends the each jQuery statement. |
JsStatement |
JsStatement.ready(JsScope scope)
Appends the ready jQuery statement. |
Uses of JsScope in org.odlabs.wiquery.core.javascript.helper |
---|
Methods in org.odlabs.wiquery.core.javascript.helper with parameters of type JsScope | |
---|---|
static ChainableStatement |
AttributesHelper.attr(String key,
JsScope computedValue)
Binds the attr statement. |
static ChainableStatement |
EventsHelper.bind(EventLabel eventLabel,
JsScope jsScope)
Binds a handler to one or more events (like click) for each matched element. |
static ChainableStatement |
EventsHelper.blur(JsScope jsScope)
Bind a function to the blur event of each matched element. |
static ChainableStatement |
EventsHelper.change(JsScope jsScope)
Bind a function to the change event of each matched element. |
static ChainableStatement |
EventsHelper.click(JsScope jsScope)
Bind a function to the click event of each matched element. |
static ChainableStatement |
EventsHelper.dblclick(JsScope jsScope)
Bind a function to the dblclick event of each matched element. |
static ChainableStatement |
EventsHelper.die(EventLabel eventLabel,
JsScope jsScope)
This does the opposite of live, it removes a bound live event. |
static ChainableStatement |
EventsHelper.error(JsScope jsScope)
Bind a function to the error event of each matched element. |
static ChainableStatement |
EventsHelper.focus(JsScope jsScope)
Bind a function to the focus event of each matched element. |
static ChainableStatement |
EventsHelper.hover(JsScope over,
JsScope out)
Simulates hovering (moving the mouse on, and off, an object). |
static ChainableStatement |
EventsHelper.keydown(JsScope jsScope)
Bind a function to the keydown event of each matched element. |
static ChainableStatement |
EventsHelper.keypress(JsScope jsScope)
Bind a function to the keypress event of each matched element. |
static ChainableStatement |
EventsHelper.keyup(JsScope jsScope)
Bind a function to the keyup event of each matched element. |
static ChainableStatement |
EventsHelper.live(EventLabel eventLabel,
JsScope jsScope)
Binds a handler to an event (like click) for all current - and future - matched element. |
static ChainableStatement |
EventsHelper.load(JsScope jsScope)
Bind a function to the load event of each matched element. |
static ChainableStatement |
EventsHelper.mousedown(JsScope jsScope)
Bind a function to the mousedown event of each matched element. |
static ChainableStatement |
EventsHelper.mouseenter(JsScope jsScope)
Bind a function to the mouseenter event of each matched element. |
static ChainableStatement |
EventsHelper.mouseleave(JsScope jsScope)
Bind a function to the mouseleave event of each matched element. |
static ChainableStatement |
EventsHelper.mousemove(JsScope jsScope)
Bind a function to the mousemove event of each matched element. |
static ChainableStatement |
EventsHelper.mouseout(JsScope jsScope)
Bind a function to the mouseout event of each matched element. |
static ChainableStatement |
EventsHelper.mouseover(JsScope jsScope)
Bind a function to the mouseover event of each matched element. |
static ChainableStatement |
EventsHelper.mouseup(JsScope jsScope)
Bind a function to the mouseup event of each matched element. |
static ChainableStatement |
EventsHelper.one(EventLabel eventLabel,
JsScope jsScope)
Binds a handler to one or more events to be executed once for each matched element. |
static ChainableStatement |
EventsHelper.ready(JsScope jsScope)
Binds a function to be executed whenever the DOM is ready to be traversed and manipulated. |
static ChainableStatement |
EventsHelper.scroll(JsScope jsScope)
Bind a function to the scroll event of each matched element. |
static ChainableStatement |
EventsHelper.select(JsScope jsScope)
Bind a function to the select event of each matched element. |
static ChainableStatement |
EventsHelper.submit(JsScope jsScope)
Bind a function to the submit event of each matched element. |
static ChainableStatement |
EventsHelper.toggle(JsScope jsScope,
JsScope jsScope2)
Toggle among two function calls every other click. |
static ChainableStatement |
EventsHelper.toggle(JsScope jsScope,
JsScope jsScope2,
JsScope... jsScopes)
Toggle among two or more function calls every other click. |
static ChainableStatement |
EventsHelper.toggle(JsScope jsScope,
JsScope jsScope2,
JsScope... jsScopes)
Toggle among two or more function calls every other click. |
static ChainableStatement |
EventsHelper.unbind(EventLabel eventLabel,
JsScope jsScope)
This does the opposite of bind, it removes bound events from each of the matched elements. |
static ChainableStatement |
EventsHelper.unload(JsScope jsScope)
Bind a function to the unload event of each matched element. |
Uses of JsScope in org.odlabs.wiquery.core.options |
---|
Methods in org.odlabs.wiquery.core.options that return JsScope | |
---|---|
JsScope |
Options.getJsScope(String key)
Returns the given option value. |
Methods in org.odlabs.wiquery.core.options with parameters of type JsScope | |
---|---|
Options |
Options.put(String key,
JsScope value)
Puts a JsScope value for the given option name. |
Uses of JsScope in org.odlabs.wiquery.ui.accordion |
---|
Methods in org.odlabs.wiquery.ui.accordion with parameters of type JsScope | |
---|---|
Accordion |
Accordion.setNavigationFilter(JsScope navigationFilter)
Overwrite the default location.href-matching with your own matcher. |
Uses of JsScope in org.odlabs.wiquery.ui.autocomplete |
---|
Methods in org.odlabs.wiquery.ui.autocomplete that return JsScope | |
---|---|
JsScope |
AutocompleteSource.getJsScope()
|
Methods in org.odlabs.wiquery.ui.autocomplete with parameters of type JsScope | |
---|---|
void |
AutocompleteSource.setJsScope(JsScope jsScope)
Set the scope param |
Constructors in org.odlabs.wiquery.ui.autocomplete with parameters of type JsScope | |
---|---|
AutocompleteSource(JsScope jsScope)
Constructor |
Uses of JsScope in org.odlabs.wiquery.ui.core |
---|
Subclasses of JsScope in org.odlabs.wiquery.ui.core | |
---|---|
class |
DefaultJsScopeUiEvent
Default implementation of the JsScopeUiEvent |
class |
JsScopeUiEvent
This class represent a JsScope event for the JQuery UI components The javascript representation will be like this: |
Uses of JsScope in org.odlabs.wiquery.ui.datepicker |
---|
Methods in org.odlabs.wiquery.ui.datepicker with parameters of type JsScope | |
---|---|
DatePicker<T> |
DatePicker.setCalculateWeek(JsScope calculateWeek)
A function to calculate the week of the year for a given date. |
InlineDatePicker<T> |
InlineDatePicker.setCalculateWeek(JsScope calculateWeek)
A function to calculate the week of the year for a given date. |
void |
DatePickerOptions.setCalculateWeek(JsScope calculateWeek)
A function to calculate the week of the year for a given date. |
Uses of JsScope in org.odlabs.wiquery.ui.datepicker.scope |
---|
Subclasses of JsScope in org.odlabs.wiquery.ui.datepicker.scope | |
---|---|
class |
DefaultJsScopeUiDatePickerDateTextEvent
Default implementation of the JsScopeUiDatePickerDateTextEvent |
class |
DefaultJsScopeUiDatePickerEvent
Default implementation of the JsScopeUiDatePickerEvent |
class |
DefaultJsScopeUiDatePickerOnChangeEvent
Default implementation of the JsScopeUiDatePickerOnChangeEvent |
class |
JsScopeUiDatePickerDateTextEvent
This class represent a JsScope event for the datepicker JQuery UI components for the onclose and onselect callback The javascript representation will be like this: |
class |
JsScopeUiDatePickerEvent
This class represent a JsScope event for the datepicker JQuery UI components The javascript representation will be like this: |
class |
JsScopeUiDatePickerOnChangeEvent
This class represent a JsScope event for the datepicker JQuery UI components for the onchange callback The javascript representation will be like this: |
Uses of JsScope in org.odlabs.wiquery.ui.dialog |
---|
Subclasses of JsScope in org.odlabs.wiquery.ui.dialog | |
---|---|
static class |
AjaxDialogButton.AjaxDialogScope
|
Methods in org.odlabs.wiquery.ui.dialog that return JsScope | |
---|---|
JsScope |
DialogButton.getJsScope()
Method retrieving the JsScope of the button |
Methods in org.odlabs.wiquery.ui.dialog with parameters of type JsScope | |
---|---|
void |
DialogButton.setJsScope(JsScope jsScope)
Method setting the JsScope of the button |
Constructors in org.odlabs.wiquery.ui.dialog with parameters of type JsScope | |
---|---|
DialogButton(String title,
JsScope jsScope)
Build a new instance of a dialog button |
Uses of JsScope in org.odlabs.wiquery.ui.draggable |
---|
Methods in org.odlabs.wiquery.ui.draggable that return JsScope | |
---|---|
JsScope |
DraggableHelper.getFunctionParam()
|
Methods in org.odlabs.wiquery.ui.draggable with parameters of type JsScope | |
---|---|
void |
DraggableHelper.setFunctionParam(JsScope functionParam)
Set's the function parameter |
Constructors in org.odlabs.wiquery.ui.draggable with parameters of type JsScope | |
---|---|
DraggableHelper(JsScope functionParam)
Constructor |
Uses of JsScope in org.odlabs.wiquery.ui.droppable |
---|
Methods in org.odlabs.wiquery.ui.droppable that return JsScope | |
---|---|
JsScope |
DroppableAccept.getFunctionParam()
|
Methods in org.odlabs.wiquery.ui.droppable with parameters of type JsScope | |
---|---|
void |
DroppableAccept.setFunctionParam(JsScope functionParam)
Set's the function parameter |
Constructors in org.odlabs.wiquery.ui.droppable with parameters of type JsScope | |
---|---|
DroppableAccept(JsScope functionParam)
Constructor |
Uses of JsScope in org.odlabs.wiquery.ui.position |
---|
Subclasses of JsScope in org.odlabs.wiquery.ui.position | |
---|---|
class |
JsScopePositionEvent
$Id$ This class represent a JsScope event for the position JQuery UI utility The javascript representation will be like this: |
Uses of JsScope in org.odlabs.wiquery.ui.sortable |
---|
Methods in org.odlabs.wiquery.ui.sortable that return JsScope | |
---|---|
JsScope |
SortableHelper.getFunctionParam()
|
Methods in org.odlabs.wiquery.ui.sortable with parameters of type JsScope | |
---|---|
void |
SortableHelper.setFunctionParam(JsScope functionParam)
Set's the function parameter |
Constructors in org.odlabs.wiquery.ui.sortable with parameters of type JsScope | |
---|---|
SortableHelper(JsScope functionParam)
Constructor |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |