Monday, February 24, 2014

CRM 2013 Form change Footer Color for all forms

Footer before changing color

Footer After Changing Color



This is unsupported way of MS CRM 2013 customization.

Steps:
1.       Goto C:\Program Files\Microsoft Dynamics CRM\CRMWeb\_forms\styles
2.       Make a copy of read.css.aspx file
3.       Open read.css.aspx
4.       Find TABLE.ms-crm-Form-StandaloneSection section in CSS file.
5.       Add
background-color:#D1CBC5;
in TABLE.ms-crm-Form-StandaloneSection

Exiting
TABLE.ms-crm-Form-StandaloneSection
{
table-layout: fixed;
width: 100%;
line-height: 16px;
}

Replace with

TABLE.ms-crm-Form-StandaloneSection
{
table-layout: fixed;
width: 100%;
line-height: 16px;
background-color:#D1CBC5;
}

6.       Save file.
7.       Clear browser cache

8.       Try now.

MS CRM 2013 Quick find with always wildcard charcter

This is unsupported way of CRM customization. when any new rollup installed these changes may be removed.

Steps:
1.       Go to C:\Program Files\Microsoft Dynamics CRM\CRMWeb\_static\_common\scripts
2.       Find stage.js script file.
3.       Make a copy of this file.
4.       Open Stage.js script file.
5.       Find function function quickFind(oGrid)
In this function find

sFindCriteria = Trim(findCriteria.value.replace(/[\*]+/, "*"));findCriteria.value = sFindCriteria;

6.       Replace

sFindCriteria = Trim(findCriteria.value.replace(/[\*]+/, "*")); 

with
If wants wild chard character always comes first when entered any key word for search (*abc)

sFindCriteria=Trim(findCriteria.value.replace(/[*]+/,""));if (sFindCriteria != "" && sFindCriteria.substr(0, 1) != "") sFindCriteria = "*" + sFindCriteria;


If wants wild chard character always at end (abc*) then

sFindCriteria=Trim(findCriteria.value.replace(/[*]+/,""));if (sFindCriteria != "" && sFindCriteria.substr(0, 1) != "") sFindCriteria =  sFindCriteria+"*";

if wants wildchard character in both places (*abc*)

sFindCriteria=Trim(findCriteria.value.replace(/[*]+/,""));if (sFindCriteria != "" && sFindCriteria.substr(0, 1) != "") sFindCriteria =  "*"+sFindCriteria+"*";

7.       Save the file.
8.       Clear your browser cache
9.       Try now.. 





Friday, April 26, 2013

MS CRM 2011 Email Scheduler

Schedule Email using CRM 2011 workflows.

Details are here.. MS CRM Email Scheduler (http://mscrmemailscheduler.codeplex.com/)