Class EntitySelectorOptions<T>
Common options for single-selection lookup fields.
public record EntitySelectorOptions<T> : SelectorOptions<T>, IEquatable<SelectorOptions<T>>, IEquatable<EntitySelectorOptions<T>> where T : IEntity<T>
Type Parameters
T
- Inheritance
-
EntitySelectorOptions<T>
- Implements
- Derived
- Inherited Members
Properties
CanCreate
public bool CanCreate { get; set; }
Property Value
CanSearch
public bool CanSearch { get; set; }
Property Value
CreateOverride
public EntitySelector<T>? CreateOverride { get; set; }
Property Value
FocusLossOverride
Replace the field's default behaviour for when the user tabs or clicks out.
public ZomboBoxKeyboardFocusLossBehaviour? FocusLossOverride { get; set; }
Property Value
SearchOverride
public EntitySelector<T>? SearchOverride { get; set; }
Property Value
ThrottleOverride
Replace the configured default (SearchDelay) minimum time between searches.
public TimeSpan? ThrottleOverride { get; set; }