net.liftweb.wizard.Wizard

Screen

trait Screen extends AbstractScreen

Define a screen within this wizard

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Screen
  2. AbstractScreen
  3. Factory
  4. SimpleInjector
  5. Injector
  6. AnyRef
  7. Any
Visibility
  1. Public
  2. All

Type Members

  1. case class AFilter [T] (f: (T) ⇒ T) extends FilterOrValidate[T] with Product with Serializable

    Attributes
    protected final
  2. case class AVal [T] (v: (T) ⇒ List[FieldError]) extends FilterOrValidate[T] with Product with Serializable

    Attributes
    protected final
  3. trait BoxMarker extends AnyRef

    Attributes
    protected sealed
  4. type Errors = List[FieldError]

    Attributes
    protected
    Definition Classes
    AbstractScreen
  5. 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.

  6. trait Field extends Field with ConfirmField

    Define a field within the screen

  7. class FieldBuilder [T] extends AnyRef

    Attributes
    protected
  8. trait FilterOrValidate [+T] extends AnyRef

    Attributes
    protected sealed
  9. case class FormFieldId (id: String) extends FilterOrValidate[Nothing] with Product with Serializable

    Attributes
    protected final
  10. case class FormParam (fp: ElemAttr) extends FilterOrValidate[Nothing] with Product with Serializable

    Attributes
    protected final
  11. class Inject [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.

  12. trait OtherValueInitializer [T] extends AnyRef

    Attributes
    protected sealed
  13. case class OtherValueInitializerImpl [T] (f: () ⇒ T) extends OtherValueInitializer[T] with Product with Serializable

    Attributes
    protected final

Value Members

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

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

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

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

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

    Attributes
    final
    Definition Classes
    Any
  6. object BoxMarkerObj extends BoxMarker

    A little hack because => BaseField and => Box[BaseField] have the same method signature

  7. object Field extends AnyRef

  8. object FilterOrValidate extends AnyRef

    Attributes
    protected
  9. 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

  10. object NothingOtherValueInitializer extends OtherValueInitializer[Nothing] with Product with Serializable

    Attributes
    protected
  11. 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

  12. 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
  13. def additionalAttributes : MetaData

    any additional parameters that need to be put in the on the form (e.

    any additional parameters that need to be put in the on the form (e.g., mime type)

    Definition Classes
    AbstractScreen
  14. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  15. implicit def boxOfScreen [T <: AbstractScreen] (in: T): Box[T]

    Attributes
    implicit
    Definition Classes
    AbstractScreen
  16. implicit def boxStrToListFieldError (msg: Box[String]): List[FieldError]

    Attributes
    implicit
    Definition Classes
    AbstractScreen
  17. implicit def boxXmlToListFieldError (msg: Box[NodeSeq]): List[FieldError]

    Attributes
    implicit
    Definition Classes
    AbstractScreen
  18. 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 fiels (e.g., localize its name)

    default

    - the default value of the field

    Attributes
    protected
    Definition Classes
    AbstractScreen
  19. def cancelButton : Elem

    Definition Classes
    ScreenAbstractScreen
  20. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  21. def confirmScreen_? : Boolean

    Is this screen a confirm screen?

  22. object currentField extends ThreadGlobal[FieldIdentifier]

    Attributes
    protected
  23. implicit def elemInABox (in: Elem): Box[Elem]

    Attributes
    protected implicit
    Definition Classes
    AbstractScreen
  24. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  25. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  26. 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
  27. 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
  28. def field [T] (underlying: ⇒ BaseField { type ValueType = T }, stuff: FilterOrValidate[T]*)(implicit man: Manifest[T]): Field { type ValueType = T }

    Attributes
    protected
    Definition Classes
    AbstractScreen
  29. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  30. def finish (): Unit

    override this method if there's a screen-specific thing to do on finish.

    override this method if there's a screen-specific thing to do on finish. This method is called before the main Wizard's finish method

  31. def finishButton : Elem

    Definition Classes
    ScreenAbstractScreen
  32. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef
  33. def grabParams (in: Seq[Screen.this.FilterOrValidate[_]]): List[ElemAttr]

    Grabs the FormFieldId and FormParam parameters

    Grabs the FormFieldId and FormParam parameters

    Attributes
    protected
    Definition Classes
    AbstractScreen
  34. def hasUploadField : Boolean

    Attributes
    protected
    Definition Classes
    AbstractScreen
  35. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  36. implicit def inject [T] (implicit man: Manifest[T]): Box[T]

    Perform the injection for the given type.

    Perform the injection for the given type. You can call: inject[Date] or inject[List[Map[String, PaymentThing]]]. The appropriate Manifest will be

    Attributes
    implicit
    Definition Classes
    SimpleInjectorInjector
  37. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  38. def isLastScreen : Boolean

  39. 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
  40. 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

    returns

    a newly minted Field

    Attributes
    protected
    Definition Classes
    AbstractScreen
  41. def maxVal [T] (len: ⇒ T, msg: ⇒ String)(implicit f: (T) ⇒ Number): (T) ⇒ List[FieldError]

    Attributes
    protected
    Definition Classes
    AbstractScreen
  42. def minVal [T] (len: ⇒ T, msg: ⇒ String)(implicit f: (T) ⇒ Number): (T) ⇒ List[FieldError]

    Attributes
    protected
    Definition Classes
    AbstractScreen
  43. def multiselect [T] (name: ⇒ String, default: ⇒ Seq[T], choices: ⇒ Seq[T], stuff: FilterOrValidate[Seq[T]]*)(implicit f: 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

    Attributes
    protected
    Definition Classes
    AbstractScreen
  44. val myScreenNum : Int

  45. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  46. def nextButton : Elem

  47. def nextScreen : Box[Screen]

  48. def notNull : (String) ⇒ String

    Attributes
    protected
    Definition Classes
    AbstractScreen
  49. def noticeTypeToAttr (screen: AbstractScreen): Box[(Value) ⇒ MetaData]

    Definition Classes
    AbstractScreen
  50. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  51. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  52. 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
    ScreenAbstractScreen
  53. 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

    Attributes
    protected
    Definition Classes
    AbstractScreen
  54. def postFinish (): Unit

    override this method if there's a screen-specific thing to do on finish.

    override this method if there's a screen-specific thing to do on finish. This method is executed after the main Wizards finish() method.

  55. def prevButton : Elem

  56. 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

    Attributes
    protected
    Definition Classes
    AbstractScreen
  57. def registerInjection [T] (f: () ⇒ T)(implicit man: Manifest[T]): Unit

    Register a function that will inject for the given Manifest

    Register a function that will inject for the given Manifest

    Definition Classes
    SimpleInjector
  58. def removeRegExChars (regEx: String): (String) ⇒ String

    Attributes
    protected
    Definition Classes
    AbstractScreen
  59. def screenBottom : Box[Elem]

    Definition Classes
    AbstractScreen
  60. def screenFields : List[BaseField]

    A list of fields in this screen

    A list of fields in this screen

    Definition Classes
    AbstractScreen
  61. def screenName : String

    The name of the screen.

    The name of the screen. Override this to change the screen name

    Definition Classes
    ScreenAbstractScreen
  62. def screenNameAsHtml : NodeSeq

    Definition Classes
    AbstractScreen
  63. def screenTitle : NodeSeq

    Definition Classes
    AbstractScreen
  64. def screenTop : Box[Elem]

    Definition Classes
    AbstractScreen
  65. def screenValidate : List[FieldError]

    Definition Classes
    AbstractScreen
  66. def select [T] (name: ⇒ String, default: ⇒ T, choices: ⇒ Seq[T], stuff: FilterOrValidate[T]*)(implicit f: 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

    Attributes
    protected
    Definition Classes
    AbstractScreen
  67. implicit def strToListFieldError (msg: String): List[FieldError]

    Attributes
    implicit
    Definition Classes
    AbstractScreen
  68. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  69. 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

    Attributes
    protected
    Definition Classes
    AbstractScreen
  70. 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

    Attributes
    protected
    Definition Classes
    AbstractScreen
  71. 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

    Attributes
    protected
    Definition Classes
    AbstractScreen
  72. def toLower : (String) ⇒ String

    Attributes
    protected
    Definition Classes
    AbstractScreen
  73. def toString (): String

    Definition Classes
    AbstractScreen → AnyRef → Any
  74. def toUpper : (String) ⇒ String

    Attributes
    protected
    Definition Classes
    AbstractScreen
  75. def transitionIntoFrom (from: Box[Screen]): Unit

    A notification that we are transitioning into this screen.

    A notification that we are transitioning into this screen. Override this method to perform some screen-specific actions

    from

    the screen we're coming from

  76. def transitionOutOfTo (to: Box[Screen]): Unit

    A notification that we are transitioning out of this screen.

    A notification that we are transitioning out of this screen. Override this method to perform some screen-specific actions

    to

    the screen we're transitioning to

  77. def trim : (String) ⇒ String

    Attributes
    protected
    Definition Classes
    AbstractScreen
  78. 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
  79. 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
  80. 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
  81. def validate : List[FieldError]

    Definition Classes
    AbstractScreen
  82. def validations : List[() ⇒ List[FieldError]]

    Definition Classes
    AbstractScreen
  83. def vendAVar [T] (dflt: ⇒ T): NonCleanAnyVar[T]

    Attributes
    protected
    Definition Classes
    ScreenAbstractScreen
  84. def vendForm [T] (implicit man: Manifest[T]): Box[(T, (T) ⇒ Any) ⇒ NodeSeq]

    Attributes
    protected
    Definition Classes
    AbstractScreen
  85. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  88. implicit def xmlToListFieldError (msg: NodeSeq): List[FieldError]

    Attributes
    implicit
    Definition Classes
    AbstractScreen
  89. def _register (field: () ⇒ FieldContainer): Unit

    Use addFields

    Use addFields

    @deprecated

    Attributes
    protected
    Definition Classes
    AbstractScreen
    Annotations
    @deprecated
    Deprecated

    use addFields()

Inherited from AbstractScreen

Inherited from Factory

Inherited from SimpleInjector

Inherited from Injector

Inherited from AnyRef

Inherited from Any