net.liftweb.http.js.jquery

JqJE

object JqJE

Contains Scala JsExps for jQuery behaviors.

These functions are meant to be combined using the ~> operator. For example:

JqJE.Jq("button") ~> JqClick(AnonFunc(...))

Documentation on the case classes themselves will point to the relevant jQuery documentation, if there is any.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JqJE
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. case class Jq(query: JsExp) extends JsExp with Product with Serializable

    Calls the main jQuery (or $) function with the parameter in query.

  2. case class JqAppend(content: NodeSeq) extends JsExp with JsMember with Product with Serializable

    Calls the jQuery append function with the given content.

  3. case class JqAppendTo(content: NodeSeq) extends JsExp with JsMember with Product with Serializable

    Calls the jQuery appendTo function with the given content.

  4. case class JqAttr(key: String, value: JsExp) extends JsExp with JsMember with Product with Serializable

    Calls the jQuery attr function with the given key and the given value.

  5. case class JqClick(exp: JsExp) extends JsExp with JsMember with Product with Serializable

    Calls the jQuery click function with the parameter in exp.

  6. case class JqCss(name: JsExp, value: JsExp) extends JsExp with JsMember with Product with Serializable

    Calls the jQuery css function with the given name and value.

  7. case class JqEmptyAfter(content: NodeSeq) extends JsExp with JsMember with Product with Serializable

    Calls the jQuery empty function followed by calling the jQuery after function with the given content.

  8. case class JqGetAttr(key: String) extends JsExp with JsMember with Product with Serializable

    Calls the jQuery attr function with the given key.

  9. case class JqId(id: JsExp) extends JsExp with Product with Serializable

    A JQuery query for an element based on the id of the element

  10. case class JqKeypress(what: (Char, JsCmd)*) extends JsExp with JsMember with Product with Serializable

    For every passed tuple, executes the given JsCmd when the given Char is pressed by the user.

  11. case class JqPrepend(content: NodeSeq) extends JsExp with JsMember with Product with Serializable

    Calls the jQuery prepend function with the given content.

  12. case class JqPrependTo(content: NodeSeq) extends JsExp with JsMember with Product with Serializable

    Calls the jQuery prependTo function with the given content.

  13. case class JqRemove() extends JsExp with JsMember with Product with Serializable

    Calls the jQuery remove function.

  14. case class JqReplace(content: NodeSeq) extends JsExp with JsMember with Product with Serializable

    Calls the jQuery replaceWith function with the given content.

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. object JqDoc extends JsExp with Product with Serializable

    Calls the main jQuery (or $) function with "document".

  7. object JqHtml

  8. object JqScrollToBottom extends JsExp with JsMember with Product with Serializable

    Changes the scroll position of each matched element to its maximum.

  9. object JqSerialize extends JsExp with JsMember with Product with Serializable

    Calls the jQuery serialize function.

  10. object JqTabs

  11. object JqTabsClick

  12. object JqTabsSelected extends JsExp with JsMember with Product with Serializable

  13. object JqText

  14. object JsonSerialize extends JsExp with JsMember with Product with Serializable

    Calls the jQuery serializeArray function.

  15. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  16. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  27. def toString(): String

    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped