Multiple search terms in data-search attribute (including guids)
Multiple search terms in data-search attribute (including guids)
Hi,
I had another closed question but then I realised this wasn't working as expected
If you include multiple search terms including guids in the data-search attribute, you are unable to search for the guids. If you only have a single guid value it will allow you to search for that
<tr data-search="This text part search works the guids don't 566fc620-c6bc-11dd-ad8b-0800200c9a66 a84fe2b5-e380-4700-817c-b68a66aede2d">
Is there some configuration option that affects this?
Thanks
This question has accepted answers - jump to:
Answers
No. The
data-search
attribute will override the cell contents for the search. You would need to include both forms in thedata-search
attribute - e.g.data-search="A. Cox Ashton Cox"
.Allan
Perfect, that should work, I couldn't see that clearly in the documentation
Thank you for the response
Actually,
I'm trying to add two guids into the search, I can search for the text part but not the guid
<tr data-search="This text part search works the guids don't 566fc620-c6bc-11dd-ad8b-0800200c9a66 a84fe2b5-e380-4700-817c-b68a66aede2d">
The
data-search
property needs to be applied to thetd
cells, rather than thetr
.Allan