object JqJsCmds
- Alphabetic
- By Inheritance
- JqJsCmds
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- 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
- 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
- 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
- class Hide extends JsCmd with HasTime
Hide an element identified by uid and the animation will last @time
- 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
- 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
- case class JqSetHtml(uid: String, content: NodeSeq) extends JsCmd with Product with Serializable
Sets the inner HTML of the element denominated by the id
- class ModalDialog extends JsCmd
Requires the jQuery blockUI plugin
- class Show extends JsCmd with HasTime
Show an element identified by uid
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- implicit def jsExpToJsCmd(in: JsExp): JsCmd
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object AppendHtml
Append a NodeSeq to a node specified by uid using jQuery's append() method.
- object AppendToHtml
AppendTo a NodeSeq to a node specified by uid using jQuery's appendTo() method.
- object EmptyAfter
Replaces the children of the node at { @code uid } with { @code content }
- object FadeIn extends Serializable
The companion object to FadeIn that provides an alternative factory
- object FadeOut extends Serializable
The companion object to FadeOut that provides an alternative factory
- 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
- object ModalDialog
Companion object for ModelDialog that provides two alternative factories
- object PrependHtml
Prepends a NodeSeq to a node specified by uid using jQuery's prepend() method.
- object PrependToHtml
Prepends a NodeSeq to a node specified by uid using jQuery prependTo() method.
- 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
- case object Unblock extends JsCmd with Product with Serializable
Remove the jQuery.Block dialog