Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Changing default "Find" query in web client
Yo_Adrian
Hi all,
Were looking for how to change the default query that populates when you click over to the Find tab in the web client.
Currently it defaults to “Quick Search” and “contains word”.
We would like it to default to another option, like “Any Text”.
Thank you, your help is appreciated.
4.6.1 build 7
Find more posts tagged with
Comments
lyman
I will pass along to the web client guru for comment, but I should point out that Quick search which uses the fulltext indexing capabilities o fthe underlying database is significantly faster than many of the alternatives and in particular is usual far faster than AnyText.
Cheers,
Lyman Hurd
Migrateduser
You need to edit the "include\Find-QueryUtil.asp" file.
Go to line 426, which should look like the following:
objCriteria.MetaGUID = IIF(mediabinServerObject.IsQuickSearchAvailable, c_FullTextIndexGUID, c_AnyTextGUID)
and change it to:
objCriteria.MetaGUID = c_AnyTextGUID
This will set the Find tab default to "Any Text".