Hi all...
If you or your clients are tired of entering asterisks at the beginning of each search, it's an unsupported workaround to make life easier :
It has been tested on Microsoft CRM 2011 Rollup 8, and it had no side effects...
1. Go to the following path and find "stage.js" file
"C:\Program Files\Microsoft Dynamics CRM\CRMWeb\_static\_common\scripts\"
2. Create a backup copy of this file before any modification, so that you have the original copy too
3. Open "stage.js" in a text editor such as EmEditor
4. Find the following line of code:
sFindCriteria=Trim(findCriteria.value.replace(/[\*]+/,"*"));findCriteria.value=sFindCriteria;
5. Now change it to :
sFindCriteria=Trim(findCriteria.value.replace(/[\*]+/,"*"));if (sFindCriteria != "" && sFindCriteria.substr(0, 1) != "*") sFindCriteria = "*" + sFindCriteria;findCriteria.value=sFindCriteria;
6. Save the file and try Quick Find to see the change
*This post is locked for comments
I have the same question (0)