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
Filtering is incredibly useful, but I was curious if it could be extended a bit. I was thinking a delimiter based filtering system that could be initialized like this: enableDelimiterBasedFiltering: [',',' ', ';']
And now something such as searching for cat ball or ball,cat would then return the following filtered results:
the cat ran after the ball
the ball was thrown to the cat
As it would iterate through each string looking for a contains. I am not sure how this may affect performance though on larger sets - thoughts?
Great plugin by the way!
The text was updated successfully, but these errors were encountered:
Sounds interesting, I am considering allowing a hook in the filtering mechanism (also see #408#803#877). Then this could be implemented using a custom hook.
ENHANCEMENT REQUEST
Filtering is incredibly useful, but I was curious if it could be extended a bit. I was thinking a delimiter based filtering system that could be initialized like this:
enableDelimiterBasedFiltering: [',',' ', ';']
And now something such as searching for cat ball or ball,cat would then return the following filtered results:
As it would iterate through each string looking for a contains. I am not sure how this may affect performance though on larger sets - thoughts?
Great plugin by the way!
The text was updated successfully, but these errors were encountered: