Hello!
We have been replacing our dropdown searches with the new framework available in 2.13.0 and found one difference between the new framework and the deprecated version. The deprecated version has an "Advanced Format" option (we use this for fuseOptions: threshold 0.0 in some Applications) and I can not find documentation on how to implement this in the new framework - any guidance?
Hi @Nick MATES
In new version, The "AdvanedFormat" option is not present where we can use the fuseOptions for search configuration.
But, what I suggest you to create a handler for one of the available event (Initialized) and use your TEXT code inside a JS widget to implement the search functionality.
For example, see the below screenshot.
Let me know if this helps you!
Warm Regards,
Abhinav
Hi,
What Abhinav has suggested its exactly perfect. I am upvoting it.
Adding to the above answer I would like to share one video with you where all the steps explained well with real time example as abhinav said.
https://www.youtube.com/watch?v=fxph1aqI9SM
Thanks,
Ajit Kurane.
Hi @Abhinav Shilwant,
In the advance format I had "searchResultLimit: 10;" this configuration to limit the search records, I tried it like you mentioned but its not working for me, see below..
[{
searchResultLimit: 10,
fuseOptions: {
caseSensitive: false ,
findAllMatches: true ,
thresHold: 1.0 ,
distance: 1000 ,
}
}]
If possible can you share oml on how you implemented .
Thanks
Shivangi
That worked - thank you!