net.liftweb.record

DisplayWithLabel

trait DisplayWithLabel[OwnerType <: Record[OwnerType]] extends OwnedField[OwnerType]

Mix in to a field to change its form display to be formatted with the label aside.

E.g.

{ control }

Linear Supertypes
OwnedField[OwnerType], BaseField, util.BaseField, FieldContainer, SettableField, SettableValueHolder, Settable, ReadableField, Bindable, ValueHolder, FieldIdentifier, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DisplayWithLabel
  2. OwnedField
  3. BaseField
  4. BaseField
  5. FieldContainer
  6. SettableField
  7. SettableValueHolder
  8. Settable
  9. ReadableField
  10. Bindable
  11. ValueHolder
  12. FieldIdentifier
  13. AnyRef
  14. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract type ValueType

    Definition Classes
    ValueHolder

Abstract Value Members

  1. abstract def asJValue: JValue

    Encode the field value into a JValue

    Encode the field value into a JValue

    Definition Classes
    BaseField
  2. abstract def asJs: JsExp

    Returns the field's value as a valid JavaScript expression

    Returns the field's value as a valid JavaScript expression

    Definition Classes
    BaseField
  3. abstract def asString: String

    Definition Classes
    BaseField
  4. abstract def get: ValueType

    Definition Classes
    ValueHolder
  5. abstract def owner: OwnerType

    Return the owner of this field

    Return the owner of this field

    Definition Classes
    OwnedField
  6. abstract def set(in: ValueType): ValueType

    Definition Classes
    Settable
  7. abstract def setFilter: List[(ValueType) ⇒ ValueType]

    Definition Classes
    SettableField
  8. abstract def validate: List[FieldError]

    Definition Classes
    SettableField
  9. abstract def validations: List[(ValueType) ⇒ List[FieldError]]

    Definition Classes
    SettableField
  10. abstract def is: ValueType

    Definition Classes
    ValueHolder
    Annotations
    @deprecated
    Deprecated

    (Since version 2.4) Use get

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[util.BaseField]

    Definition Classes
    BaseField → FieldContainer
  7. def asHtml: NodeSeq

    Definition Classes
    ReadableField → Bindable
  8. final def asInstanceOf[T0]: T0

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

    Definition Classes
    Settable
  10. def canRead_?: Boolean

    Can the value of this field be read without obscuring the result?

    Can the value of this field be read without obscuring the result?

    Definition Classes
    BaseField
  11. def canWrite_?: Boolean

    Can the value of this field be written?

    Can the value of this field be written?

    Definition Classes
    BaseField
  12. def checkCanRead_?: Boolean

    If the owner is not in "safe" mode, check the current environment to see if the field can be read

    If the owner is not in "safe" mode, check the current environment to see if the field can be read

    Definition Classes
    BaseField
  13. def checkCanWrite_?: Boolean

    If the owner is not in "safe" mode, check the current environment to see if the field can be written

    If the owner is not in "safe" mode, check the current environment to see if the field can be written

    Definition Classes
    BaseField
  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def dirty_?: Boolean

    Definition Classes
    BaseField
  16. def dirty_?(b: Boolean): Unit

    Attributes
    protected
    Definition Classes
    BaseField
  17. def displayHtml: NodeSeq

    Definition Classes
    ReadableField
  18. def displayName: String

    The display name of this field (e.

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

    Definition Classes
    OwnedField → ReadableField
  19. def displayNameHtml: Box[NodeSeq]

    Definition Classes
    ReadableField
  20. final def eq(arg0: AnyRef): Boolean

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

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

    Definition Classes
    SettableField
  23. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def forceDirty_?: Boolean

    Should the dirty flag always be set when setBox is called

    Should the dirty flag always be set when setBox is called

    Definition Classes
    BaseField
  25. def formElemAttrs: Seq[http.SHtml.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
    BaseField
  26. def formInputType: String

    Form field's type.

    Form field's type. Defaults to 'text', but you may want to change it to other HTML5 values.

    Definition Classes
    BaseField
  27. final def getClass(): Class[_]

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

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

    Definition Classes
    SettableField
  30. def ignoreField_?: Boolean

    Should the field be ignored by the OR Mapper?

    Should the field be ignored by the OR Mapper?

    Definition Classes
    BaseField
  31. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  32. def label: NodeSeq

    Definition Classes
    BaseField
  33. def name: String

    The text name of this field

    The text name of this field

    Definition Classes
    OwnedField → ReadableField
  34. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  35. def noValueErrorMessage: String

    The error message used when the field value could not be set

    The error message used when the field value could not be set

    Definition Classes
    BaseField
  36. def notOptionalErrorMessage: String

    The error message used when the field value must be set

    The error message used when the field value must be set

    Definition Classes
    BaseField
  37. final def notify(): Unit

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

    Definition Classes
    AnyRef
  39. def optional_?: Boolean

    Is the value of this field optional (e.

    Is the value of this field optional (e.g. NULLable)?

    Definition Classes
    BaseField
  40. def performAtomicOperation[T](f: ⇒ T): T

    Definition Classes
    Settable
  41. def required_?: Boolean

    Definition Classes
    SettableField
  42. def resetDirty: Unit

    Definition Classes
    BaseField
  43. final def safe_?: Boolean

    Are we in "safe" mode (i.

    Are we in "safe" mode (i.e., the value of the field can be read or written without any security checks.)

    Definition Classes
    OwnedFieldBaseField
  44. def shouldDisplay_?: Boolean

    Definition Classes
    ReadableField
  45. def show_?: Boolean

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

    Definition Classes
    AnyRef
  47. def tabIndex: Int

    Definition Classes
    BaseField
  48. def toForm: Box[NodeSeq]

    Generate a form control for the field

    Generate a form control for the field

    Definition Classes
    DisplayWithLabelBaseField → SettableField
  49. def toString(): String

    Definition Classes
    AnyRef → Any
  50. def toXHtml: NodeSeq

    Convert the field value to an XHTML representation

    Convert the field value to an XHTML representation

    Definition Classes
    BaseField
  51. def uniqueFieldId: Box[String]

    Definition Classes
    BaseField → FieldIdentifier
  52. def uploadField_?: Boolean

    Definition Classes
    SettableField
  53. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from OwnedField[OwnerType]

Inherited from BaseField

Inherited from util.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