Interface CustomChooserStepPropertyBuilder.AllowValuesProviderBuilder
- Enclosing interface:
- CustomChooserStepPropertyBuilder
public static interface CustomChooserStepPropertyBuilder.AllowValuesProviderBuilder
- Since:
- 2.0.0
-
Method Summary
Modifier and TypeMethodDescriptionwithAllowChooserItemsProvider
(BiFunction<UICallbackContext, CustomChooserItemBuilder, List<CustomChooserItem>> allowChooserItemsProvider) Configures the allowed provider from which chooser items will be used populate the column chooserwithAllowValuesProvider
(Function<UICallbackContext, List<String>> allowValuesProvider) Configures the allowed provider from which values will be used populate the column chooser
-
Method Details
-
withAllowValuesProvider
CustomChooserStepPropertyBuilder withAllowValuesProvider(Function<UICallbackContext, List<String>> allowValuesProvider) Configures the allowed provider from which values will be used populate the column chooser- Parameters:
allowValuesProvider
- callback that returns a list of allowed values- Returns:
- Custom chooser step property builder
-
withAllowChooserItemsProvider
CustomChooserStepPropertyBuilder withAllowChooserItemsProvider(BiFunction<UICallbackContext, CustomChooserItemBuilder, List<CustomChooserItem>> allowChooserItemsProvider) Configures the allowed provider from which chooser items will be used populate the column chooser- Parameters:
allowChooserItemsProvider
- callback that returns a list of allowed pair value description- Returns:
- Custom chooser step property builder
- Since:
- 2.3.0
-