selectOnActivate property

  1. @Input()
set selectOnActivate (bool value)

If true, triggering this item component will select the value within the selection; if false, triggering this item component will do nothing.

Implementation

@Input()
set selectOnActivate(bool value) {
  _selectOnActivate = value;
}