BernhardtD / vue-sorted-table

A basic sorted table for Vue.js.
MIT License
33 stars 4 forks source link

sort case insensitive #3

Closed christophstockinger closed 4 years ago

christophstockinger commented 4 years ago

Hi @BernhardtD,

great work!

I need your help. I'd like to sort through case insensitive. Is it possible to allow this as an option or do you have an alternative solution?

Thanks for an answer!

BernhardtD commented 4 years ago

Hi @christophstockinger,

you should provide a custom sorting function. The SortedTable component provides the property onSort, which should be a callback to sort the given value array. The first argument of the custom sorting function is the selected property (e.g. 'id') and the second argument is the direction ('asc' or 'desc').

christophstockinger commented 4 years ago

@BernhardtD Thanks for your answer. It works.