Uses of Interface
org.odlabs.wiquery.core.javascript.ChainableStatement

Packages that use ChainableStatement
org.odlabs.wiquery.core.effects   
org.odlabs.wiquery.core.effects.basic   
org.odlabs.wiquery.core.effects.fading   
org.odlabs.wiquery.core.effects.sliding   
org.odlabs.wiquery.core.events   
org.odlabs.wiquery.core.javascript   
org.odlabs.wiquery.core.javascript.helper   
org.odlabs.wiquery.ui.effects   
 

Uses of ChainableStatement in org.odlabs.wiquery.core.effects
 

Classes in org.odlabs.wiquery.core.effects that implement ChainableStatement
 class Animate
          $Id$
 class Effect
          $Id$
 

Uses of ChainableStatement in org.odlabs.wiquery.core.effects.basic
 

Classes in org.odlabs.wiquery.core.effects.basic that implement ChainableStatement
 class Delay
           Defines the delay Effect.
 class Hide
          $Id$
 class Show
          $Id$
 class Toggle
          $Id$
 

Uses of ChainableStatement in org.odlabs.wiquery.core.effects.fading
 

Classes in org.odlabs.wiquery.core.effects.fading that implement ChainableStatement
 class FadeIn
          $Id$
 class FadeOut
          $Id$
 class FadeTo
          $Id$
 

Uses of ChainableStatement in org.odlabs.wiquery.core.effects.sliding
 

Classes in org.odlabs.wiquery.core.effects.sliding that implement ChainableStatement
 class SlideDown
          $Id$
 class SlideToggle
          $Id$
 class SlideUp
          $Id$
 

Uses of ChainableStatement in org.odlabs.wiquery.core.events
 

Classes in org.odlabs.wiquery.core.events that implement ChainableStatement
 class Event
          $Id$
 

Uses of ChainableStatement in org.odlabs.wiquery.core.javascript
 

Classes in org.odlabs.wiquery.core.javascript that implement ChainableStatement
 class DefaultChainableStatement
          $Id$
 

Methods in org.odlabs.wiquery.core.javascript with parameters of type ChainableStatement
 JsStatement JsStatement.chain(ChainableStatement chainableStatement)
          Chains a function call to this JsStatement.
 

Uses of ChainableStatement in org.odlabs.wiquery.core.javascript.helper
 

Methods in org.odlabs.wiquery.core.javascript.helper that return ChainableStatement
static ChainableStatement TraversingHelper.add(String expression)
          Binds the add statement.
static ChainableStatement AttributesHelper.addClass(String className)
          Binds the addClass statement.
static ChainableStatement ManipulatingHelper.after(CharSequence html)
          Binds the after statement.
static ChainableStatement AttributesHelper.attr(String key, JsScope computedValue)
          Binds the attr statement.
static ChainableStatement AttributesHelper.attr(String key, String value)
          Binds the attr statement.
static ChainableStatement ManipulatingHelper.before(CharSequence html)
          Binds the before 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()
          Triggers the blur event of each matched element.
static ChainableStatement EventsHelper.blur(JsScope jsScope)
          Bind a function to the blur event of each matched element.
static ChainableStatement EventsHelper.change()
          Triggers the change event of each matched element.
static ChainableStatement EventsHelper.change(JsScope jsScope)
          Bind a function to the change event of each matched element.
static ChainableStatement TraversingHelper.children(String expression)
          Binds the children statement.
static ChainableStatement EventsHelper.click()
          Triggers the click event of each matched element.
static ChainableStatement EventsHelper.click(JsScope jsScope)
          Bind a function to the click event of each matched element.
static ChainableStatement TraversingHelper.contents(String expression)
          Binds the contents statement.
static ChainableStatement CssHelper.css(Options options)
          Binds the css statement.
static ChainableStatement CssHelper.css(String name, String value)
          Binds the css statement.
static ChainableStatement EventsHelper.dblclick()
          Triggers the dblclick 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 TraversingHelper.eq(int position)
          Binds the eq statement.
static ChainableStatement EventsHelper.error()
          Triggers the error event of each matched element.
static ChainableStatement EventsHelper.error(JsScope jsScope)
          Bind a function to the error event of each matched element.
static ChainableStatement TraversingHelper.filter(String expression)
          Binds the filter statement.
static ChainableStatement TraversingHelper.find(String expression)
          Binds the find statement.
static ChainableStatement EventsHelper.focus()
          Triggers the focus 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 AttributesHelper.html(CharSequence htmlContents)
          Binds the html statement.
static ChainableStatement ManipulatingHelper.insertAfter(String expression)
          Binds the insertAfter statement.
static ChainableStatement ManipulatingHelper.insertBefore(String expression)
          Binds the insertBefore statement.
static ChainableStatement EventsHelper.keydown()
          Triggers the keydown event of each matched element.
static ChainableStatement EventsHelper.keydown(JsScope jsScope)
          Bind a function to the keydown event of each matched element.
static ChainableStatement EventsHelper.keypress()
          Triggers the keypress 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()
          Triggers the keyup 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 TraversingHelper.next(String expression)
          Binds the next statement.
static ChainableStatement TraversingHelper.nextAll(String expression)
          Binds the nextAll statement.
static ChainableStatement TraversingHelper.not(String expression)
          Binds the not statement.
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 TraversingHelper.parent(String expression)
          Binds the parent statement.
static ChainableStatement TraversingHelper.parents(String expression)
          Binds the parents statement.
static ChainableStatement TraversingHelper.prev(String expression)
          Binds the prev statement.
static ChainableStatement TraversingHelper.prevAll(String expression)
          Binds the prevAll statement.
static ChainableStatement EventsHelper.ready(JsScope jsScope)
          Binds a function to be executed whenever the DOM is ready to be traversed and manipulated.
static ChainableStatement AttributesHelper.removeAttr(String key)
          Binds the removeAttr statement.
static ChainableStatement AttributesHelper.removeClass(String className)
          Binds the removeClass statement.
static ChainableStatement EventsHelper.scroll(JsScope jsScope)
          Bind a function to the scroll event of each matched element.
static ChainableStatement EventsHelper.select()
          Triggers the select event of each matched element.
static ChainableStatement EventsHelper.select(JsScope jsScope)
          Bind a function to the select event of each matched element.
static ChainableStatement TraversingHelper.siblings(String expression)
          Binds the siblings statement.
static ChainableStatement TraversingHelper.slice(int start)
          Binds the slice statement.
static ChainableStatement TraversingHelper.slice(int start, int end)
          Binds the slice statement.
static ChainableStatement EventsHelper.submit()
          Triggers the submit 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 AttributesHelper.toggleClass(String className)
          Binds the toggleClass statement.
static ChainableStatement EventsHelper.trigger(EventLabel eventLabel)
          Trigger an event on every matched element.
static ChainableStatement EventsHelper.trigger(EventLabel eventLabel, CharSequence... data)
          Trigger an event on every matched element.
static ChainableStatement EventsHelper.triggerHandler(EventLabel eventLabel)
          Triggers all bound event handlers on an element (for a specific event type) WITHOUT executing the browser's default actions, bubbling, or live events.
static ChainableStatement EventsHelper.triggerHandler(EventLabel eventLabel, CharSequence... data)
          Triggers all bound event handlers on an element (for a specific event type) WITHOUT executing the browser's default actions, bubbling, or live events.
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 ChainableStatement in org.odlabs.wiquery.ui.effects
 

Classes in org.odlabs.wiquery.ui.effects that implement ChainableStatement
 class BounceEffect
          $Id$ Helper class to implement the shake effect as in http://docs.jquery.com/UI/Effects/Shake
 class ExplodeEffect
          $Id$ Helper class to implement the explode effect as in http://docs.jquery.com/UI/Effects/Explode
 class HighlightEffect
          $Id$ Helper class to implement the hightlight effect as in http://docs.jquery.com/UI/Effects/Hightlight
 class PuffEffect
          $Id$ Helper class to implement the puff effect as in http://docs.jquery.com/UI/Effects/Puff
 class PulsateEffect
          $Id$ Helper class to implement the pulsate effect as in http://docs.jquery.com/UI/Effects/Pulsate
 class ScaleEffect
          $Id$ Helper class to implement the scale effect as in http://docs.jquery.com/UI/Effects/Scale
 class ShakeEffect
          $Id$ Helper class to implement the shake effect as in http://docs.jquery.com/UI/Effects/Shake
 



Copyright © 2012. All Rights Reserved.