Interface for an Entity attribute.

Type Parameters

  • T = any

Hierarchy

Implemented by

Properties

A collection of all the controls on the form that interface with this attribute.

Methods

  • Adds a handler to be called when the attribute's value is changed.

    Parameters

    Returns void

  • Fire all "on change" event handlers.

    Returns void

  • Gets attribute type.

    Returns Xrm.Attributes.AttributeType

    The attribute's type name.

    Values returned are:

    • boolean
    • datetime
    • decimal
    • double
    • integer
    • lookup
    • memo
    • money
    • optionset
    • string
  • Gets the attribute format.

    Returns Xrm.Attributes.AttributeFormat

    The format of the attribute.

    Values returned are:

    • date (datetime)
    • datetime (datetime)
    • duration (integer)
    • email (string)
    • language (optionset)
    • none (integer)
    • phone (string)
    • text (string)
    • textarea (string)
    • tickersymbol (string)
    • timezone (optionset)
    • url (string)
  • Gets a boolean value indicating whether this Attribute has unsaved changes.

    Returns boolean

    true if there are unsaved changes, otherwise false.

  • Gets the logical name of the attribute.

    Returns string

    The logical name.

  • Gets a reference to the record context of this attribute.

    Returns Xrm.Entity

    The parent record context.

  • Gets current submit mode for the attribute.

    Returns Xrm.SubmitMode

    The submit mode, as either "always", "never", or "dirty"

    Remarks

    The default value is "dirty"

  • Gets the current user's privileges for the attribute.

    Returns Xrm.Privilege

    The user privileges.

  • Gets the value.

    Returns T

    The value.

  • Removes the handler from the "on change" event.

    Parameters

    Returns void

  • Sets a value for a column to determine whether it is valid or invalid with a message

    Parameters

    • isValid: boolean

      Specify false to set the column value to invalid and true to set the value to valid.

    • Optional message: string

      The message to display.

    Returns void

  • Sets the required level.

    Parameters

    Returns void

  • Sets the submit mode.

    Parameters

    • submitMode: Xrm.SubmitMode

      The submit mode, as either "always", "never", or "dirty".

    Returns void

    Default

    submitMode "dirty"
    

    See

    AttributeRequirementLevel

  • Sets the value.

    Parameters

    • value: T

      The value.

    Returns void

    Remarks

    Attributes on Quick Create Forms will not save values set with this method.

Generated using TypeDoc