net.liftweb.http.AbstractScreen

Field

trait Field extends ConfirmField

A field that's part of a Screen

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Field
  2. ConfirmField
  3. BaseField
  4. FieldContainer
  5. SettableField
  6. SettableValueHolder
  7. Settable
  8. ReadableField
  9. Bindable
  10. ValueHolder
  11. FieldIdentifier
  12. AnyRef
  13. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract type OtherValueType

  2. abstract type ValueType

    Definition Classes
    ValueHolder

Abstract Value Members

  1. abstract def default: ValueType

  2. implicit abstract def manifest: Manifest[ValueType]

  3. abstract def name: String

    The human name of this field

    The human name of this field

    Definition Classes
    ReadableField

Concrete Value Members

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

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

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

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

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

    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. final def asInstanceOf[T0]: T0

    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 binding: Box[FieldBinding]

  11. def buildIt[T](implicit man: Manifest[T]): Manifest[T]

    Attributes
    protected
  12. def clone(): AnyRef

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

    Definition Classes
    ReadableField
  14. def displayName: String

    The display name of this field (e.

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

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

    Definition Classes
    ReadableField
  16. def editable_?: Boolean

    Is the field editable

  17. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  19. 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
  20. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def formElemAttrs: Seq[SHtml.ElemAttr]

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

  22. def get: ValueType

    get the value

    get the value

    Definition Classes
    FieldValueHolder
  23. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  24. def hashCode(): Int

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

    Definition Classes
    FieldSettableField
  26. final def isInstanceOf[T0]: Boolean

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

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

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

    Definition Classes
    AnyRef
  30. def onConfirm_?: Boolean

    Is this field on the confirm screen

    Is this field on the confirm screen

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

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

  33. def otherValueDefault: OtherValueType

    Attributes
    protected
  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 setOtherValue(v: OtherValueType): OtherValueType

  39. def shouldDisplay_?: Boolean

    Given the current context, should this field be displayed

    Given the current context, should this field be displayed

    Definition Classes
    ReadableField
  40. def show_?: Boolean

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

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

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

    Definition Classes
    AnyRef
  42. def toForm: Box[NodeSeq]

    Create an input field for the item

    Create an input field for the item

    Definition Classes
    FieldSettableField
  43. def toString(): String

    Definition Classes
    Field → AnyRef → Any
  44. def transforms: List[(BaseField) ⇒ (NodeSeq) ⇒ NodeSeq]

  45. def uniqueFieldId: Box[String]

    Definition Classes
    FieldFieldIdentifier
  46. 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
  47. 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
  48. def validations: List[(ValueType) ⇒ List[FieldError]]

    Definition Classes
    FieldSettableField
  49. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def is: ValueType

    Get the value.

    Get the value. Use get.

    Definition Classes
    FieldValueHolder
    Deprecated

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

Ungrouped