cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Hi everyone,

I’m experiencing an issue with the search functionality in my dynamic object card collection. Despite having the search enabled set to true, the search feature doesn’t seem to be working. Whenever I try to search for something, it doesn’t return any results.

Has anyone else encountered this problem? Any suggestions or solutions would be greatly appreciated!

Thanks in advance!

0 Likes
View Entire Topic
bill_froelich
Product and Topic Expert
Product and Topic Expert
0 Likes

There is not automatic search support for non-OData targets.  Looking at your page def you are getting your data from ClientData.  You can still implement search but will need to use a rule for your Target and do the filtering within the rule to return the filtered search results to be displayed.

The rule can access the searchstring and based on if that is populated do the necessary filtering of your ClientData list.

Sharon_Shaji
Explorer
0 Likes
@ bill_froelich, thank you for your help , then what should i use so that the search feature is functional.
bill_froelich
Product and Topic Expert
Product and Topic Expert
0 Likes

You will need write a rule for your target that handles the filtering of the #Application/#ClientData/ManualSampleDetails array based on the searchString to return the subset of data matching your desired search restrictions and sort if needed.