Async Field Types
ajax_select
Search-as-you-type select backed by a registered data source. Requires a
source key matching a data source registered via
$runtime->register_data_source() — see
Extension Recipes for how to register one. Add
'multiple' => true for a multi-select variant.
// Single select
array(
'id' => 'featured_campaign',
'type' => 'ajax_select',
'source' => 'campaign_library',
'label' => 'Featured Campaign',
'placeholder' => 'Search campaigns...',
'min_search_length' => 1,
'per_page' => 4,
'default' => 'spring-launch',
),
// Multi-select
array(
'id' => 'supporting_campaigns',
'type' => 'ajax_select',
'source' => 'campaign_library',
'multiple' => true,
'label' => 'Supporting Campaigns',
'placeholder' => 'Search campaigns...',
'min_search_length' => 1,
'per_page' => 4,
'default' => array( 'creator-series', 'audio-week' ),
),
min_search_length sets how many characters trigger a search request;
per_page caps results per page for the paged dropdown. Both requests and
hydration of the stored value go through the REST transport documented in
REST API.