object JE

JavaScript Expressions. To see these in action, check out sites/example/src/webapp/json.html

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JE
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait AnonFunc extends JsExp
  2. case class Call (function: String, params: JsExp*) extends JsExp with Product with Serializable

    A JavaScript method that takes parameters

    A JavaScript method that takes parameters

    Call is very similar to JsFunc but only the former will be implicitly converted to a JsCmd.

    See also

    JsFunc

  3. case class CheckedById (id: String) extends JsExp with Product with Serializable

    Given the id of a checkbox, see if it's checked

  4. case class ElemById (id: String, thenStr: String*) extends JsExp with Product with Serializable

    gets the element by ID

  5. case class JsAnd (left: JsExp, right: JsExp) extends JsExp with Product with Serializable
  6. case class JsArray (in: JsExp*) extends JsExp with Product with Serializable
  7. case class JsEq (left: JsExp, right: JsExp) extends JsExp with Product with Serializable
  8. case class JsFunc (method: String, params: JsExp*) extends JsMember with Product with Serializable

    A JavaScript method that takes parameters

    A JavaScript method that takes parameters

    JsFunc is very similar to Call but only the latter will be implicitly converted to a JsCmd.

    See also

    Call

  9. case class JsGt (left: JsExp, right: JsExp) extends JsExp with Product with Serializable
  10. case class JsGtEq (left: JsExp, right: JsExp) extends JsExp with Product with Serializable
  11. case class JsLt (left: JsExp, right: JsExp) extends JsExp with Product with Serializable
  12. case class JsLtEq (left: JsExp, right: JsExp) extends JsExp with Product with Serializable
  13. case class JsNot (exp: JsExp) extends JsExp with Product with Serializable
  14. case class JsNotEq (left: JsExp, right: JsExp) extends JsExp with Product with Serializable
  15. case class JsOr (left: JsExp, right: JsExp) extends JsExp with Product with Serializable
  16. case class JsRaw (rawJsCmd: String) extends JsExp with Product with Serializable

    Put any JavaScript expression you want in here and the result will be evaluated.

  17. case class JsVal (valueName: String) extends JsMember with Product with Serializable

    A value that can be retrieved from an expression

  18. case class JsVar (varName: String, andThen: String*) extends JsExp with Product with Serializable
  19. trait MostLjFuncs extends AnyRef
    Attributes
    protected
  20. case class Num (n: Number) extends JsExp with Product with Serializable
  21. case class ParentOf (id: String) extends JsExp with Product with Serializable

    Gives the parent node of the node denominated by the id

    Gives the parent node of the node denominated by the id

    id

    - the id of the node

  22. case class Str (str: String) extends JsExp with Product with Serializable

    A String (JavaScript encoded)

  23. case class Stringify (in: JsExp) extends JsExp with Product with Serializable
  24. case class ValById (id: String) extends JsExp with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def boolToJsExp(in: Boolean): JsExp
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  16. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. object AnonFunc
  22. object FormToJSON
  23. object Id extends JsMember with Product with Serializable
  24. object JsArray extends Serializable
  25. object JsFalse extends JsExp with Product with Serializable
  26. object JsNull extends JsExp with Product with Serializable
  27. object JsObj
  28. object JsTrue extends JsExp with Product with Serializable
  29. object LjAlt
  30. object LjBuildIndex
  31. object LjFilter extends MostLjFuncs
  32. object LjFlatMap extends MostLjFuncs
  33. object LjFold
  34. object LjForeach extends MostLjFuncs
  35. object LjMagicUpdate
  36. object LjMap extends MostLjFuncs
  37. object LjSort extends MostLjFuncs
  38. object LjSwappable
  39. object Num extends Serializable

    The companion object to Num which has some helpful constructors

  40. object Parent extends JsMember with Product with Serializable
  41. object Style extends JsMember with Product with Serializable
  42. object Value extends JsMember with Product with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped