You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I have what I'd guess is an uncommon use case where I need to use a different sorting behavior than the default, treating numbers as strings.
I'm working on a commercial real estate dashboard where I have tables that are lists of addresses/codes that are technically names, but they start with numbers (ex: 15712-NP | Ste 9, 15812-NP | Ste 1, 3825-NW166 | Ste C3-H, 3801-NW166 | Ste 5, etc)
Whenever I sort these fields, their value as a whole number is parsed. However, I'd like their order to be determined character-by-character.
For example, using the numbers above, an ASCENDING sort shows in this order:
3801-NW166 | Ste 5
3825-NW166 | Ste C3-H
15712-NP | Ste 9
15812-NP | Ste 1
(numbers that start with "1" are at the end because they have more digits and are technically greater in value than the "smaller" numbers that start with "3")
But I'd like for it to show in this order:
15712-NP | Ste 9
15812-NP | Ste 1
3801-NW166 | Ste 5
3825-NW166 | Ste C3-H
Just a standard alphabetical sort that doesn't consider the actual value of a set of numbers.
I came up with a solution that technically works, but it feels a little too hacky. I'm sorting with content from a data attribute and inserting spaces after every character (with PHP on page load), here's an example:
Hello, I have what I'd guess is an uncommon use case where I need to use a different sorting behavior than the default, treating numbers as strings.
I'm working on a commercial real estate dashboard where I have tables that are lists of addresses/codes that are technically names, but they start with numbers (ex:
15712-NP | Ste 9
,15812-NP | Ste 1
,3825-NW166 | Ste C3-H
,3801-NW166 | Ste 5
, etc)Whenever I sort these fields, their value as a whole number is parsed. However, I'd like their order to be determined character-by-character.
For example, using the numbers above, an ASCENDING sort shows in this order:
(numbers that start with "1" are at the end because they have more digits and are technically greater in value than the "smaller" numbers that start with "3")
But I'd like for it to show in this order:
Just a standard alphabetical sort that doesn't consider the actual value of a set of numbers.
I came up with a solution that technically works, but it feels a little too hacky. I'm sorting with content from a data attribute and inserting spaces after every character (with PHP on page load), here's an example:
So my question is: is there an easier way to use a different sorting method on specific columns?
The text was updated successfully, but these errors were encountered: