Interface RemoteField

All Superinterfaces:
Component, DataComponent, Field, InputComponent, LabeledComponent, Selectable
All Known Subinterfaces:
MultiRemoteField
All Known Implementing Classes:
MultiRemoteFieldImpl, MultiRemoteFieldWrapper, RemoteFieldImpl, RemoteFieldWrapper

@Deprecated public interface RemoteField extends InputComponent, Selectable, Field
Deprecated.
A component for selecting one or multiple values where the options to choose from are loaded lazily (remotely) based on user typing.
  • Method Details

    • getMinChars

      int getMinChars()
      Deprecated.
    • setMinChars

      void setMinChars(int minChars)
      Deprecated.
    • getDisplayCreateButton

      Boolean getDisplayCreateButton()
      Deprecated.
    • setDisplayCreateButton

      void setDisplayCreateButton(Boolean displayCreateButton)
      Deprecated.
    • getDataSourceProps

      Map<String,Object> getDataSourceProps()
      Deprecated.
      The entity system uses:
      • 'scope' eg 'list' WARNING i believe the case is different, maybe in the form of 'List' now. also it may not be the scope you expect. it's from the remote field config, not the current form scope.
      • 'source' eg 'Address'
      • 'entityType' eg 'STANDARD' (enum)
      • 'allowCreate' boolean
      Returns:
      See above for the list of params. They depend on which backend is using the field.
    • setDataSourceProps

      void setDataSourceProps(Map<String,Object> dataSourceProps)
      Deprecated.