net.liftweb.wizard.Wizard.Screen

Field

trait Field extends Field with ConfirmField

Define a field within the screen

Definition Classes
ScreenAbstractScreen
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Field
  2. Field
  3. ConfirmField
  4. BaseField
  5. FieldContainer
  6. SettableField
  7. SettableValueHolder
  8. Settable
  9. ReadableField
  10. Bindable
  11. ValueHolder
  12. FieldIdentifier
  13. AnyRef
  14. Any
Visibility
  1. Public
  2. All

Type Members

  1. type OtherValueType

    Attributes
    abstract
    Definition Classes
    Field
  2. type ValueType

    Attributes
    abstract
    Definition Classes
    ValueHolder

Abstract Value Members

  1. def default : ValueType

    Attributes
    abstract
    Definition Classes
    Field
  2. implicit def manifest : Manifest[ValueType]

    Attributes
    implicit abstract
    Definition Classes
    Field
  3. def name : String

    The human name of this field

    The human name of this field

    Attributes
    abstract
    Definition Classes
    ReadableField

Concrete 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. def allFields : Seq[BaseField]

    Definition Classes
    BaseFieldFieldContainer
  7. def asHtml : NodeSeq

    Default read-only rendering of field

    Default read-only rendering of field

    Definition Classes
    ReadableFieldBindable
  8. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  9. def atomicUpdate (f: (ValueType) ⇒ ValueType): ValueType

    Perform an atomic update of this Settable.

    Perform an atomic update of this Settable. The current value is passed to the function and the ValueHolder is set to the result of the function. This is enclosed in the performAtomicOperation method which will, by default, synchronize this instance

    Definition Classes
    Settable
  10. def buildIt [T] (implicit man: Manifest[T]): Manifest[T]

    Attributes
    protected
    Definition Classes
    Field
  11. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. def displayHtml : NodeSeq

    Definition Classes
    ReadableField
  13. def displayName : String

    The display name of this field (e.

    The display name of this field (e.g., "First Name")

    Definition Classes
    ReadableField
  14. def displayNameHtml : Box[NodeSeq]

    Definition Classes
    ReadableField
  15. def editable_? : Boolean

    Is the field editable

    Is the field editable

    Definition Classes
    Field
  16. def eq (arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  18. def fieldId : Option[NodeSeq]

    A unique 'id' for the field for form generation

    A unique 'id' for the field for form generation

    Definition Classes
    SettableField
  19. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  20. def formElemAttrs : Seq[ElemAttr]

    What form elements are we going to add to this field?

    What form elements are we going to add to this field?

    Definition Classes
    Field
  21. def get : ValueType

    get the value

    get the value

    Definition Classes
    FieldValueHolder
  22. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  23. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  24. def helpAsHtml : Box[NodeSeq]

    Definition Classes
    FieldSettableField
  25. def is : ValueType

    Get the value.

    Get the value. Use get.

    @deprecated

    Definition Classes
    FieldValueHolder
  26. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  27. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  28. def notify (): Unit

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

    Attributes
    final
    Definition Classes
    AnyRef
  30. def onConfirm_? : Boolean

    Is this field on the confirm screen

    Is this field on the confirm screen

    Definition Classes
    FieldFieldConfirmField
  31. def otherFuncVendors (what: Manifest[ValueType]): Box[(ValueType, (ValueType) ⇒ Any) ⇒ NodeSeq]

    Attributes
    protected
    Definition Classes
    FieldField
  32. def otherValue : OtherValueType

    A field my have an "otherValue" which can be used to store a list of options or other information that the fields needs on a Screen/Wizard by Screen/Wizard basis

    A field my have an "otherValue" which can be used to store a list of options or other information that the fields needs on a Screen/Wizard by Screen/Wizard basis

    Definition Classes
    Field
  33. def otherValueDefault : OtherValueType

    Attributes
    protected
    Definition Classes
    Field
  34. def performAtomicOperation [T] (f: ⇒ T): T

    Perform an atomic operation on the Settable.

    Perform an atomic operation on the Settable. By default synchronizes the instance, but it could use other mechanisms

    Definition Classes
    Settable
  35. def required_? : Boolean

    Is the Field required (and will have a style designating it as such)

    Is the Field required (and will have a style designating it as such)

    Definition Classes
    SettableField
  36. def set (v: ValueType): ValueType

    Definition Classes
    FieldSettable
  37. def setFilter : List[(ValueType) ⇒ ValueType]

    A list of functions that transform the value before it is set.

    A list of functions that transform the value before it is set. The transformations are also applied before the value is used in a query. Typical applications of this are trimming and/or toLowerCase-ing strings

    Definition Classes
    FieldSettableField
  38. def shouldDisplay_? : Boolean

    Given the current context, should this field be displayed

    Given the current context, should this field be displayed

    Definition Classes
    ReadableField
  39. def show_? : Boolean

    Give the current state of things, should the this field be shown

    Give the current state of things, should the this field be shown

    Definition Classes
    SettableField
  40. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  41. def toForm : Box[NodeSeq]

    Create an input field for the item

    Create an input field for the item

    Definition Classes
    FieldSettableField
  42. def toString (): String

    Definition Classes
    Field → AnyRef → Any
  43. def uniqueFieldId : Box[String]

    Definition Classes
    FieldFieldIdentifier
  44. def uploadField_? : Boolean

    Set to true if this field is part of a multi-part mime upload

    Set to true if this field is part of a multi-part mime upload

    Definition Classes
    FieldSettableField
  45. def validate : List[FieldError]

    Validate this field and return a list of Validation Issues

    Validate this field and return a list of Validation Issues

    Definition Classes
    FieldSettableField
  46. def validations : List[(ValueType) ⇒ List[FieldError]]

    Definition Classes
    FieldSettableField
  47. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Field

Inherited from ConfirmField

Inherited from BaseField

Inherited from FieldContainer

Inherited from SettableField

Inherited from SettableValueHolder

Inherited from Settable

Inherited from ReadableField

Inherited from Bindable

Inherited from ValueHolder

Inherited from FieldIdentifier

Inherited from AnyRef

Inherited from Any