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
We have some items in a db. If we will use for sorting "\|" it will not work. At the result we will get all items from the db.
Example: item1: Cat1\| , item2:Cat2
Sorting by:\|
Result: Cat1\| , Cat2
Expected value: Cat1\|
The text was updated successfully, but these errors were encountered:
why in sorting do you expect to filter the result?
you should use a filter instead of sorting!
sorting gets a parameter name to sort it based on type (number or string or ...) ascending or descending :)
We have some items in a db. If we will use for sorting "\|" it will not work. At the result we will get all items from the db.
Example: item1: Cat1\| , item2:Cat2
Sorting by:\|
Result: Cat1\| , Cat2
Expected value: Cat1\|
The text was updated successfully, but these errors were encountered: