trait LiftScreen extends AbstractScreen with StatefulSnippet with ScreenWizardRendered
- Alphabetic
- By Inheritance
- LiftScreen
- ScreenWizardRendered
- StatefulSnippet
- DispatchSnippet
- AbstractScreen
- Loggable
- Factory
- SimpleInjector
- Injector
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- final case class AFieldBinding(binding: FieldBinding) extends FilterOrValidate[Nothing] with Product with Serializable
- Attributes
- protected
- Definition Classes
- AbstractScreen
- final case class AFilter[T](f: (T) => T) extends FilterOrValidate[T] with Product with Serializable
- Attributes
- protected
- Definition Classes
- AbstractScreen
- final case class AVal[T](v: (T) => List[FieldError]) extends FilterOrValidate[T] with Product with Serializable
- Attributes
- protected
- Definition Classes
- AbstractScreen
- sealed trait BoxMarker extends AnyRef
- Attributes
- protected
- Definition Classes
- AbstractScreen
- final case class DisplayIf(func: (BaseField) => Boolean) extends FilterOrValidate[Nothing] with Product with Serializable
- Attributes
- protected
- Definition Classes
- AbstractScreen
- trait Field extends ConfirmField
A field that's part of a Screen
A field that's part of a Screen
- Definition Classes
- AbstractScreen
- class FieldBuilder[T] extends AnyRef
- Attributes
- protected
- Definition Classes
- AbstractScreen
- final case class FieldTransform(func: (BaseField) => (NodeSeq) => NodeSeq) extends FilterOrValidate[Nothing] with Product with Serializable
- Attributes
- protected
- Definition Classes
- AbstractScreen
- sealed trait FilterOrValidate[+T] extends AnyRef
- Attributes
- protected
- Definition Classes
- AbstractScreen
- final case class FormFieldId(id: String) extends FilterOrValidate[Nothing] with Product with Serializable
- Attributes
- protected
- Definition Classes
- AbstractScreen
- final case class FormParam(fp: SHtml.ElemAttr) extends FilterOrValidate[Nothing] with Product with Serializable
- Attributes
- protected
- Definition Classes
- AbstractScreen
- final case class Help(ns: NodeSeq) extends FilterOrValidate[Nothing] with Product with Serializable
- Attributes
- protected
- Definition Classes
- AbstractScreen
- sealed trait OtherValueInitializer[T] extends AnyRef
- Attributes
- protected
- Definition Classes
- AbstractScreen
- final case class OtherValueInitializerImpl[T](f: () => T) extends OtherValueInitializer[T] with Product with Serializable
- Attributes
- protected
- Definition Classes
- AbstractScreen
- abstract class FactoryMaker[T] extends StackableMaker[T] with Vendor[T]
Create an object or val that is a subclass of the FactoryMaker to generate factory for a particular class as well as define session and request specific vendors and use doWith to define the vendor just for the scope of the call.
Create an object or val that is a subclass of the FactoryMaker to generate factory for a particular class as well as define session and request specific vendors and use doWith to define the vendor just for the scope of the call.
- Definition Classes
- Factory
- type DispatchIt = PartialFunction[String, (NodeSeq) => NodeSeq]
- Definition Classes
- DispatchSnippet
- type Errors = List[FieldError]
- Attributes
- protected
- Definition Classes
- AbstractScreen
- abstract class Inject[T] extends StackableMaker[T] with Vendor[T]
- Definition Classes
- SimpleInjector
- class ScreenSnapshot extends Snapshot
- Attributes
- protected
- abstract class ScreenVar[T] extends NonCleanAnyVar[T]
Keep request-local information around without the nastiness of naming session variables or the type-unsafety of casting the results.
Keep request-local information around without the nastiness of naming session variables or the type-unsafety of casting the results. RequestVars share their value through the scope of the current HTTP request. They have no value at the beginning of request servicing and their value is discarded at the end of request processing. They are helpful to share values across many snippets.
- class CssClassBinding extends AnyRef
- Definition Classes
- ScreenWizardRendered
- trait Snapshot extends AnyRef
- Attributes
- protected
- Definition Classes
- ScreenWizardRendered
Abstract Value Members
- abstract def finish(): Unit
- Attributes
- protected
- abstract def formName: String
- Definition Classes
- ScreenWizardRendered
Concrete Value Members
- implicit object BoxMarkerObj extends BoxMarker
A little hack because => BaseField and => Box[BaseField] have the same method signature
A little hack because => BaseField and => Box[BaseField] have the same method signature
- Attributes
- protected
- Definition Classes
- AbstractScreen
- object Field
- Definition Classes
- AbstractScreen
- object FilterOrValidate
- Attributes
- protected
- Definition Classes
- AbstractScreen
- case object NotOnConfirmScreen extends FilterOrValidate[Nothing] with Product with Serializable
Override the screen default for fields appearing on the confirm screen and force this field not to appear on the confirm screen
Override the screen default for fields appearing on the confirm screen and force this field not to appear on the confirm screen
- Attributes
- protected
- Definition Classes
- AbstractScreen
- case object NothingOtherValueInitializer extends OtherValueInitializer[Nothing] with Product with Serializable
- Attributes
- protected
- Definition Classes
- AbstractScreen
- case object OnConfirmScreen extends FilterOrValidate[Nothing] with Product with Serializable
Override the screen default for fields appearing on the confirm screen and force this field to appear on the confirm screen
Override the screen default for fields appearing on the confirm screen and force this field to appear on the confirm screen
- Attributes
- protected
- Definition Classes
- AbstractScreen
- object currentField extends ThreadGlobal[FieldIdentifier]
- Attributes
- protected
- Definition Classes
- AbstractScreen
- 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
- def addFields(fields: () => FieldContainer): Unit
Add a FieldContainer to the Screen.
Add a FieldContainer to the Screen. A FieldContainer can contain either a single field (a BaseField) or a collection of BaseFields. The key take-away is that if the LiftScreen or Wizard is a singleton, you can still display variable number of fields by returning a variable number of BaseField instances from the FieldContainer.
WARNING -- this method is public so it can be called from a Wizard. This method should only be called from within the Screen or Wizard that owns the Screen and not from external code.- Definition Classes
- AbstractScreen
- def addName(name: String): Unit
- Definition Classes
- StatefulSnippet
- def additionalAttributes: MetaData
Any additional parameters that need to be put on the form (e.g., mime type)
Any additional parameters that need to be put on the form (e.g., mime type)
- Definition Classes
- AbstractScreen
- def additionalFormBindings: Box[CssSel]
- Attributes
- protected
- Definition Classes
- ScreenWizardRendered
- def ajaxForms_?: Boolean
Are the forms Ajax or regular HTTP/HTML.
Are the forms Ajax or regular HTTP/HTML.
If the ajax=true attribute is present on the original snippet invocation, the forms will be ajax.
- Attributes
- protected
- Definition Classes
- ScreenWizardRendered
- def allTemplate: NodeSeq
- Attributes
- protected
- Definition Classes
- LiftScreen → ScreenWizardRendered
- def allTemplateNodeSeq: NodeSeq
- Attributes
- protected
- Definition Classes
- ScreenWizardRendered
- def allTemplatePath: List[String]
- Attributes
- protected
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def bindLocalAction(selector: String, func: () => JsCmd): CssSel
- Attributes
- protected
- implicit def boxOfScreen[T <: AbstractScreen](in: T): Box[T]
- Definition Classes
- AbstractScreen
- implicit def boxStrToListFieldError(msg: Box[String]): List[FieldError]
- Definition Classes
- AbstractScreen
- implicit def boxXmlToListFieldError(msg: Box[NodeSeq]): List[FieldError]
- Definition Classes
- AbstractScreen
- def builder[T](name: => String, default: => T, stuff: FilterOrValidate[T]*)(implicit man: Manifest[T]): FieldBuilder[T]
Create a FieldBuilder so you can add help screens, validations and filters.
Create a FieldBuilder so you can add help screens, validations and filters. Remember to invoke "make" on the returned FieldBuilder to convert it into a field
- name
- the name of the field. This is a call-by-name parameter, so you can dynamically calculate the name of the field (e.g., localize its name)
- default
- the default value of the field
- stuff
- any filter or validation functions
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def calcAjax: Boolean
Calculate if this Screen/Wizard should be ajax
Calculate if this Screen/Wizard should be ajax
- Attributes
- protected
- Definition Classes
- ScreenWizardRendered
- def calcAjaxOnDone: JsCmd
What should be done at the end of an Ajax session.
What should be done at the end of an Ajax session. By default, RedirectTo(Referer.get)
- Attributes
- protected
- Definition Classes
- ScreenWizardRendered
- def calcReferer: String
Calculate the referer (the page to go back to on finish).
Calculate the referer (the page to go back to on finish). defaults to S.referer openOr "/"
- Attributes
- protected
- Definition Classes
- ScreenWizardRendered
- def cancelButton: Elem
- Definition Classes
- AbstractScreen
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def createSnapshot: ScreenSnapshot
- Attributes
- protected
- Definition Classes
- LiftScreen → ScreenWizardRendered
- lazy val cssClassBinding: CssClassBinding
- Attributes
- protected
- Definition Classes
- ScreenWizardRendered
- def defaultFieldNodeSeq: NodeSeq
- Definition Classes
- ScreenWizardRendered
- def defaultToAjax_?: Boolean
Should all instances of this Wizard or Screen default to Ajax when not explicitly set
Should all instances of this Wizard or Screen default to Ajax when not explicitly set
- Attributes
- protected
- Definition Classes
- ScreenWizardRendered
- def defaultXml: NodeSeq
the NodeSeq passed as a parameter when the snippet was invoked
the NodeSeq passed as a parameter when the snippet was invoked
- Attributes
- protected
- def dispatch: PartialFunction[String, (NodeSeq) => NodeSeq]
- Definition Classes
- LiftScreen → DispatchSnippet
- def doFinish(): JsCmd
- Attributes
- protected
- implicit def elemInABox(in: Elem): Box[Elem]
- Attributes
- protected
- Definition Classes
- AbstractScreen
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def field[T](name: => String, default: => T, stuff: FilterOrValidate[T]*)(implicit man: Manifest[T]): Field { type ValueType = T }
Create a field with a name, default value, and
Create a field with a name, default value, and
- name
- the name of the field. This is a call-by-name parameter, so you can dynamically calculate the name of the fiels (e.g., localize its name)
- default
- the default value of the field
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def field[T](underlying: => Box[BaseField { type ValueType = T }], stuff: FilterOrValidate[T]*)(implicit man: Manifest[T], marker: BoxMarker): Field { type ValueType = T }
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def field[T](underlying: => BaseField { type ValueType = T }, stuff: FilterOrValidate[T]*)(implicit man: Manifest[T]): Field { type ValueType = T }
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def finishButton: Elem
- Definition Classes
- AbstractScreen
- def formAttrs: MetaData
What additional attributes should be put on
What additional attributes should be put on
- Attributes
- protected
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def grabParams(in: Seq[FilterOrValidate[_]]): List[SHtml.ElemAttr]
Grabs the FormFieldId and FormParam parameters
Grabs the FormFieldId and FormParam parameters
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def hasUploadField: Boolean
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- implicit def inject[T](implicit man: Manifest[T]): Box[T]
- Definition Classes
- SimpleInjector → Injector
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def labelSuffix: NodeSeq
- Definition Classes
- ScreenWizardRendered
- def link(to: String, func: () => Any, body: NodeSeq, attrs: SHtml.ElemAttr*): Elem
create an anchor tag around a body
create an anchor tag around a body
- to
- the target
- func
- the function to invoke when the link is clicked
- body
- the NodeSeq to wrap in the anchor tag
- attrs
- the (optional) attributes for the HTML element
- Definition Classes
- StatefulSnippet
- def localSetup(): Unit
Override this method to do any setup of this screen
Override this method to do any setup of this screen
- Attributes
- protected
- Definition Classes
- AbstractScreen
- val logger: Logger
- Attributes
- protected
- Definition Classes
- Loggable
- Annotations
- @transient()
- def makeField[T, OV](theName: => String, defaultValue: => T, theToForm: (Field { ... /* 2 definitions in type refinement */ }) => Box[NodeSeq], otherValue: OtherValueInitializer[OV], stuff: FilterOrValidate[T]*): Field { ... /* 2 definitions in type refinement */ }
Create a field that's added to the Screen
Create a field that's added to the Screen
- theName
the name of the field. This is call-by-name, so you can do things like S.?("Dog's Name") such that the string will be localized
- defaultValue
the starting value for the field. This is also call-by-name which is handy for constructs like:
SomeExternalRequestVarOrSessionVar.get- theToForm
a function to convert the field into a form
- otherValue
a handy way include other values in the field. The other value is calcualted when the field is initialized. You can, for example, put a list of valid options in the field.
- stuff
a list of filters and validations for the field
- returns
a newly minted Field
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def mapLocalAction[T](func: () => JsCmd)(f: (String) => T): T
- Attributes
- protected
- def maxVal[T](len: => T, msg: => String)(implicit f: (T) => Number): (T) => List[FieldError]
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def minVal[T](len: => T, msg: => String)(implicit f: (T) => Number): (T) => List[FieldError]
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def multiselect[T](name: => String, default: => Seq[T], choices: => Seq[T], stuff: FilterOrValidate[Seq[T]]*)(implicit f: SHtml.PairStringPromoter[T]): Field { ... /* 2 definitions in type refinement */ }
Create a multi select HTML element
Create a multi select HTML element
- name
the name of the field (call-by-name)
- default
the starting value of the field (call-by-name)
- choices
the possible choices for the select
- stuff
- a list of filters and validations for the field
- f
a PairStringPromoter (a wrapper around a function) that converts T => display String
- returns
a newly minted Field{type ValueType = String}
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def names: Set[String]
- Definition Classes
- StatefulSnippet
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def notNull: (String) => String
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def noticeTypeToAttr(screen: AbstractScreen): Box[(Value) => MetaData]
- Definition Classes
- AbstractScreen
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def onConfirm_?: Boolean
By default, are all the fields on this screen on the confirm screen?
By default, are all the fields on this screen on the confirm screen?
- Definition Classes
- LiftScreen → AbstractScreen
- def password(name: => String, defaultValue: => String, stuff: FilterOrValidate[String]*): Field { type ValueType = String }
Create a password field
Create a password field
- name
the name of the field (call-by-name)
- defaultValue
the starting value of the field (call-by-name)
- stuff
the filters, validators and attributes
- returns
a newly minted Field
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def radio(name: => String, default: => String, choices: => Seq[String], stuff: FilterOrValidate[String]*): Field { ... /* 2 definitions in type refinement */ }
Create a radio HTML element
Create a radio HTML element
- name
the name of the field (call-by-name)
- default
the starting value of the field (call-by-name)
- choices
the possible choices for the select
- stuff
- a list of filters and validations for the field
- returns
a newly minted Field{type ValueType = String}
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def redirectBack(): JsCmd
- Attributes
- protected
- Definition Classes
- ScreenWizardRendered
- def redirectTo(where: String): Nothing
Redirect to another page, but make sure this StatefulSnippet is registered on that page so the state continues on the new page
Redirect to another page, but make sure this StatefulSnippet is registered on that page so the state continues on the new page
- Definition Classes
- StatefulSnippet
- def registerInjection[T](f: () => T)(implicit man: Manifest[T]): Unit
- Definition Classes
- SimpleInjector
- def registerThisSnippet(): Unit
- Definition Classes
- StatefulSnippet
- def removeRegExChars(regEx: String): (String) => String
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def renderAll(currentScreenNumber: Box[NodeSeq], screenCount: Box[NodeSeq], wizardTop: Box[Elem], screenTop: Box[Elem], fields: List[ScreenFieldInfo], prev: Box[Elem], cancel: Box[Elem], next: Box[Elem], finish: Box[Elem], screenBottom: Box[Elem], wizardBottom: Box[Elem], nextId: (String, () => JsCmd), prevId: Box[(String, () => JsCmd)], cancelId: (String, () => JsCmd), theScreen: AbstractScreen, ajax_?: Boolean): NodeSeq
- Attributes
- protected
- Definition Classes
- ScreenWizardRendered
- def renderFormCmd: JsCmd
- Attributes
- protected
- def renderHtml(): NodeSeq
- Attributes
- protected
- def renderWithErrors(errors: List[FieldError]): Unit
- Attributes
- protected
- def replayForm: JsCmd
- Attributes
- protected
- def savedDefaultXml: NodeSeq
- Attributes
- protected
- def screenBottom: Box[Elem]
- Definition Classes
- AbstractScreen
- def screenFields: List[BaseField]
A list of fields in this screen
A list of fields in this screen
- Definition Classes
- AbstractScreen
- def screenName: String
The name of the screen.
The name of the screen. Override this to change the screen name.
- Definition Classes
- AbstractScreen
- def screenNameAsHtml: NodeSeq
- Definition Classes
- AbstractScreen
- def screenTitle: NodeSeq
- Definition Classes
- AbstractScreen
- def screenTop: Box[Elem]
- Definition Classes
- AbstractScreen
- def screenValidate: List[FieldError]
- Definition Classes
- AbstractScreen
- def seeOther(where: String): Nothing
See Other to another page, but make sure this StatefulSnippet is registered on that page so the state continues on the new page
See Other to another page, but make sure this StatefulSnippet is registered on that page so the state continues on the new page
- Definition Classes
- StatefulSnippet
- def select[T](name: => String, default: => T, choices: => Seq[T], stuff: FilterOrValidate[T]*)(implicit f: SHtml.PairStringPromoter[T]): Field { ... /* 2 definitions in type refinement */ }
Create a select HTML element
Create a select HTML element
- name
the name of the field (call-by-name)
- default
the starting value of the field (call-by-name)
- choices
the possible choices for the select
- stuff
- a list of filters and validations for the field
- f
a PairStringPromoter (a wrapper around a function) that converts T => display String
- returns
a newly minted Field{type ValueType = String}
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def setLocalAction(s: String): Unit
- Attributes
- protected
- implicit def strToListFieldError(msg: String): List[FieldError]
- Definition Classes
- AbstractScreen
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def text(name: => String, defaultValue: => String, stuff: FilterOrValidate[String]*): Field { type ValueType = String }
Create a text field
Create a text field
- name
the name of the field (call-by-name)
- defaultValue
the starting value of the field (call-by-name)
- stuff
the filters, validators and attributes
- returns
a newly minted Field
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def textarea(name: => String, defaultValue: => String, rows: Int, cols: Int, stuff: FilterOrValidate[String]*): Field { type ValueType = String }
Create a textarea field
Create a textarea field
- name
the name of the field (call-by-name)
- defaultValue
the starting value of the field (call-by-name)
- rows
the number of rows in the textarea
- cols
the number of columns in the textarea
- stuff
- a list of filters and validations for the field
- returns
a newly minted Field{type ValueType = String}
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def textarea(name: => String, defaultValue: => String, stuff: FilterOrValidate[String]*): Field { type ValueType = String }
Create a textarea field with 80 columns and 5 rows
Create a textarea field with 80 columns and 5 rows
- name
the name of the field (call-by-name)
- defaultValue
the starting value of the field (call-by-name)
- stuff
- a list of filters and validations for the field
- returns
a newly minted Field{type ValueType = String}
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def toForm: NodeSeq
- def toLower: (String) => String
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def toString(): String
- Definition Classes
- AbstractScreen → AnyRef → Any
- def toUpper: (String) => String
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def trim: (String) => String
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def unregisterThisSnippet(): Unit
- Definition Classes
- StatefulSnippet
- def valMaxLen(len: => Int, msg: => String): (String) => List[FieldError]
A validation helper.
A validation helper. Make sure the string is no more than a particular length and generate a validation issue if not.
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def valMinLen(len: => Int, msg: => String): (String) => List[FieldError]
A validation helper.
A validation helper. Make sure the string is at least a particular length and generate a validation issue if not.
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def valRegex(pat: => Pattern, msg: => String): (String) => List[FieldError]
Make sure the field matches a regular expression
Make sure the field matches a regular expression
- Attributes
- protected
- Definition Classes
- AbstractScreen
- def validate: List[FieldError]
- Definition Classes
- AbstractScreen
- def validations: List[() => List[FieldError]]
- Definition Classes
- AbstractScreen
- def vendAVar[T](dflt: => T): NonCleanAnyVar[T]
- Attributes
- protected
- Definition Classes
- LiftScreen → AbstractScreen
- def vendForm[T](implicit man: Manifest[T]): Box[(T, (T) => Any) => NodeSeq]
- Attributes
- protected
- Definition Classes
- AbstractScreen
- 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()
- def wrapInDiv(in: NodeSeq): Elem
- Attributes
- protected
- Definition Classes
- ScreenWizardRendered
- implicit def xmlToListFieldError(msg: NodeSeq): List[FieldError]
- Definition Classes
- AbstractScreen
- object AjaxOnDone extends ScreenVar[JsCmd]
What to do when the Screen is done.
What to do when the Screen is done. By default, will do a redirect back to Whence, but you can change this behavior, for example, put up some other Ajax thing or alternatively, remove the form from the screen.
- Attributes
- protected
- Definition Classes
- LiftScreen → ScreenWizardRendered
- object Ajax_? extends ScreenVar[Boolean]
- Attributes
- protected
- Definition Classes
- LiftScreen → ScreenWizardRendered
- object CancelId extends TransientRequestVar[String]
- Attributes
- protected
- object FormGUID extends ScreenVar[String]
A unique GUID for the form...
A unique GUID for the form... this allows us to do an Ajax SetHtml to replace the form
- Attributes
- protected
- Definition Classes
- LiftScreen → ScreenWizardRendered
- object LocalAction extends TransientRequestVar[String]
- Attributes
- protected
- object LocalActionRef extends RequestVar[String]
- Attributes
- protected
- object LocalActions extends ScreenVar[AtomicReference[Map[String, () => JsCmd]]]
- Attributes
- protected
- object NextId extends ScreenVar[String]
- object PrevSnapshot extends TransientRequestVar[Box[ScreenSnapshot]]
- Attributes
- protected
- object Referer extends ScreenVar[String]
- Attributes
- protected
- Definition Classes
- LiftScreen → ScreenWizardRendered
- object SavedDefaultXml extends ScreenVar[NodeSeq]
- Attributes
- protected
- object _defaultXml extends TransientRequestVar[NodeSeq]
Holds the template passed via the snippet for the duration of the request
Holds the template passed via the snippet for the duration of the request
- Attributes
- protected