Docs
API
  • subSearch

    Boolean

    Enables search field in list with values.
    This property disables editable property.
    It is used only for combo type.

    Example

    
    {
      type: 'combo',
      data: [
        {index: 0, country: 'USA'},
        {index: 1, country: 'Canada'}
      ],
      displayKey: 'country',
      subSearch: true,
      valueKey: 'index',
      value: 0
    }
    

    Default

    
    false