-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
table, sortable not working on on formated column #1173
Comments
The built in sorting sorting is performed on the raw item data, not the formatted data (which formatter is presentational only, as mentioned in the documentation). You would need to provide a custom Refer to: https://bootstrap-vue.js.org/docs/components/table#sort-compare-routine |
I am having serious challenge on virtual column sorting. sample of my table is
c & f columns is the virtual columns and all the columns is formatted too this is my sortCompare sortCompare: function(a, b, key) {
if (typeof a[key] === 'number' && typeof b[key] === 'number') {
// If both compared fields are native numbers
return a[key] < b[key] ? -1 : a[key] > b[key] ? 1 : 0;
} else {
return a[key].toString().localeCompare(b[key].toString(), undefined, {
numeric: true,
});
}
}, |
@BigShanJohn you need to add in special handling for those column keys to generate the content taht is to be sorted. basically, if you see the |
I have something like this:
It's working great, except the sortable on the formated column, the total_price. Any ideias why? And/or can I solve this?
The text was updated successfully, but these errors were encountered: