Vue-select: Custom values on input field

Created on 11 Mar 2018  路  3Comments  路  Source: sagalbot/vue-select

Hello,
is there a way to add values if nothing is found on Ajax?
You should be able to enter a value yourself.

My current code:

<label for="input_artNr">ArtNr</label>
<v-select v-model="invoice_product.artNr" :placeholder="'Enter ArtNr'" :clearSearchOnSelect="false" :filterable="false" :options="foundProductByArtNr" @search="searchForProductByArtNr">
  <template slot="no-options">
    search by ArtNr ..
  </template>
  <template slot="option" slot-scope="option">
    <div class="d-center"> 
      {{option.artNr}} - {{option.title}}
    </div>
  </template>
  <template slot="selected-option" slot-scope="option">
    <div class="selected d-center">
      {{option.artNr}}
    </div>
  </template>
</v-select

Thank you.

Greetings from Hamburg,
Fabian

Most helpful comment

It seems that I'm a little to late. Anyway, you need :taggable option. Like so

<v-select
  v-model="invoice_product.artNr"
  :placeholder="'Enter ArtNr'" 
  :clearSearchOnSelect="false"
  :filterable="false"
  :options="foundProductByArtNr"
  :taggable="true"
  @search="searchForProductByArtNr"
>

All 3 comments

It seems that I'm a little to late. Anyway, you need :taggable option. Like so

<v-select
  v-model="invoice_product.artNr"
  :placeholder="'Enter ArtNr'" 
  :clearSearchOnSelect="false"
  :filterable="false"
  :options="foundProductByArtNr"
  :taggable="true"
  @search="searchForProductByArtNr"
>

@TheSmartnik thanks, i will try it.

Now i try this solution. @TheSmartnik
its works half.
The products are loaded but not displayed. Only the tag is shown.

Then i click outsite the input and then click inside the input the products are shown. Then i try to search the product, only the tag is displayed.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

davidalvarezr picture davidalvarezr  路  3Comments

lau-a picture lau-a  路  3Comments

gilles6 picture gilles6  路  3Comments

edalzell picture edalzell  路  3Comments

FrozenIce0617 picture FrozenIce0617  路  3Comments