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
I need some ideas, or maybe some best practices on how I should implement this feature.
Basically, if there is an external filter which is set to data-column="all" (demo), I want the user to be able to specify which column(s) they want to search.
These are some ideas on how a user could specify the desired column when searching for "abc" in the first column AND "10" in the second:
0:abc && 1:10
AlphaNumeric:abc && Numeric:10 (column titles will likely be case insensitive)
{AlphaNumeric}abc && {Numeric}10
abc{0} && 10{1}
0+abc && 1+10 (trying to use selectors that don't match any of the filter flags; so don't use = or -)
Currently if you search for "abc && 10" in the demo, you get 3 results, one of which includes "ABC 10" in the first column with "87" in the second.
The text was updated successfully, but these errors were encountered:
I need some ideas, or maybe some best practices on how I should implement this feature.
Basically, if there is an external filter which is set to
data-column="all"
(demo), I want the user to be able to specify which column(s) they want to search.These are some ideas on how a user could specify the desired column when searching for "abc" in the first column AND "10" in the second:
0:abc && 1:10
AlphaNumeric:abc && Numeric:10
(column titles will likely be case insensitive){AlphaNumeric}abc && {Numeric}10
abc{0} && 10{1}
0+abc && 1+10
(trying to use selectors that don't match any of the filter flags; so don't use=
or-
)Currently if you search for "abc && 10" in the demo, you get 3 results, one of which includes "ABC 10" in the first column with "87" in the second.
The text was updated successfully, but these errors were encountered: