Class DBCField

All Implemented Interfaces:
HasHandlers
Direct Known Subclasses:
DetailViewerField, ListGridField

public class DBCField extends Field
Represents a field in a DataBoundComponent.
See Also:
  • Constructor Details

    • DBCField

      public DBCField()
    • DBCField

      public DBCField(JavaScriptObject jsObj)
  • Method Details

    • getOrCreateRef

      public static DBCField getOrCreateRef(JavaScriptObject jsObj)
    • setName

      public DBCField setName(String name)
      Name of this field. Must be unique within the DataBoundComponent as well as a valid JavaScript identifier. See FieldName for details and how to check for validity.

      The name of the field is also the property in each record which holds the record's value for the field.

      Overrides:
      setName in class Field
      Parameters:
      name - New name value. Default value is null
      Returns:
      DBCField instance, for chaining setter calls
      See Also:
    • getName

      public String getName()
      Name of this field. Must be unique within the DataBoundComponent as well as a valid JavaScript identifier. See FieldName for details and how to check for validity.

      The name of the field is also the property in each record which holds the record's value for the field.

      Overrides:
      getName in class Field
      Returns:
      Current name value. Default value is null
      See Also: