ratiw / vue-table

data table simplify! -- vuetable is a Vue.js component that will automatically request (JSON) data from the server and display them nicely in html table with swappable/extensible pagination component.
MIT License
1.83k stars 303 forks source link

Search only searches one word? #105

Closed FerchoCarcho closed 7 years ago

FerchoCarcho commented 7 years ago

@ratiw If I wanna Search for "Vincenza Sporer" with " ce or" it isnt working. The search is just for one word right? the 'filter=' + this.searchFor receives "ce or" wouldnt be better to receive "ce||or"?

ratiw commented 7 years ago

@FerchoCarcho No, it won't work. You have to implement this yourself on the server side. vuetable only sends those word/phrase to the server and wait for the result.

FerchoCarcho commented 7 years ago

@ratiw , thanks