For the complete documentation index, see llms.txt. This page is also available as Markdown.

Picker Data Source Type

The Umb.DataSourceType.Picker Data Source Type is used by Property Editors that pick entities, for example, the built-in Entity Data Picker Property Editor.

Register a Picker Data Source

Data Source Manifest

{
  type: 'propertyEditorDataSource',
  dataSourceType: 'Umb.DataSourceType.Picker',
  alias: 'Umb.PropertyEditorDataSource.MyPickerDataSource',
  name: 'My Picker Data Source',
  api: () => import('./my-picker-data-source.js'),
  meta: {
   label: 'My Data Source',
   description: 'A good description of the data source',
   icon: 'icon-database',
  },
},

The Picker Data Source supports two types of data structures:

Last updated

Was this helpful?