Packages

object JqJsCmds

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

Type Members

  1. case class DisplayMessage (where: String, msg: NodeSeq, duration: util.Helpers.TimeSpan, fadeTime: util.Helpers.TimeSpan) extends JsCmd with Product with Serializable

    Show a message msg in the element with id where for duration milliseconds and fade out in fadeout milliseconds

  2. case class FadeIn (id: String, duration: util.Helpers.TimeSpan, fadeTime: util.Helpers.TimeSpan) extends JsCmd with Product with Serializable

    Fades in the element having the provided id, by waiting for the given duration and fading in during fadeTime and use @fadeTime

  3. case class FadeOut (id: String, duration: util.Helpers.TimeSpan, fadeTime: util.Helpers.TimeSpan) extends JsCmd with Product with Serializable

    Fades out the element having the provided id, by waiting for the given duration and fading out during fadeTime

  4. class Hide extends JsCmd with HasTime

    Hide an element identified by uid and the animation will last @time

  5. case class JqOnLoad (cmd: JsCmd) extends JsCmd with Product with Serializable

    Queues the JavaScript in cmd for execution when the document is ready for processing

  6. case class JqReplace (uid: String, content: NodeSeq) extends JsCmd with Product with Serializable

    Replaces the content of the node with the provided id with the markup given by content

  7. case class JqSetHtml (uid: String, content: NodeSeq) extends JsCmd with Product with Serializable

    Sets the inner HTML of the element denominated by the id

  8. class ModalDialog extends JsCmd

    Requires the jQuery blockUI plugin

  9. class Show extends JsCmd with HasTime

    Show an element identified by uid

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 clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. implicit def jsExpToJsCmd(in: JsExp): JsCmd
  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 AppendHtml

    Append a NodeSeq to a node specified by uid using jQuery's append() method.

  22. object AppendToHtml

    AppendTo a NodeSeq to a node specified by uid using jQuery's appendTo() method.

  23. object EmptyAfter

    Replaces the children of the node at { @code uid } with { @code content }

  24. object FadeIn extends Serializable

    The companion object to FadeIn that provides an alternative factory

  25. object FadeOut extends Serializable

    The companion object to FadeOut that provides an alternative factory

  26. object Hide

    Hide an element identified by uid.

    Hide an element identified by uid. There are two apply methods, one takes just the id, the other takes the id and timespan that represents how long the animation will last

  27. object ModalDialog

    Companion object for ModelDialog that provides two alternative factories

  28. object PrependHtml

    Prepends a NodeSeq to a node specified by uid using jQuery's prepend() method.

  29. object PrependToHtml

    Prepends a NodeSeq to a node specified by uid using jQuery prependTo() method.

  30. object Show

    Show an element identified by uid.

    Show an element identified by uid. There are two apply methods, one takes just the id, the other takes the id and timespan that represents how long the animation will last

  31. object Unblock extends JsCmd with Product with Serializable

    Remove the jQuery.Block dialog

Inherited from AnyRef

Inherited from Any

Ungrouped