We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Greetings! I'm working through your example (thank you) however running into problems getting the transform to fire.
The docTransform hits every time. But never the transform.
Any ideas?
`Template.SearchResults.helpers({ offender: function() {
return OffenderSearch.getData({ transform: function (matchText, regExp) { console.log('hit transform'); return matchText.replace(regExp, "<b>$&</b>"); }, docTransform: function(doc) { console.log('hit docTransform'); return doc; } });
}`
The text was updated successfully, but these errors were encountered:
You have to pass in a list of fields on the client side for it to work.
Sorry, something went wrong.
No branches or pull requests
Greetings! I'm working through your example (thank you) however running into problems getting the transform to fire.
The docTransform hits every time. But never the transform.
Any ideas?
`Template.SearchResults.helpers({
offender: function() {
}`
The text was updated successfully, but these errors were encountered: