Supported and Upgradeable approach to colour some relevant CRM form fields for Dynamics CRM.

I have been getting lot of queries on my earlier blogs in which people look for approaches to colour Text field or other CRM form fields.

This blog is to just mention the most supported approach. Look at the Account form below:

clip_image002

If you notice Account name highlighted in yellow, the field text value is marked in red. I have used html web resource to achieve this:

<!DOCTYPE html>

<html>

<head>

<style type=”text/css”>

input, select, textarea {

color: red;

}

</style>

</head>

<body>

Account name: <input type=”text” name=”FirstName” value=”Test”><br>

</body>

</html>

With a little more scripting using Xrm namespace you can add the setting of actual CRM field. Also, you can apply CRM look alike CSS to the html web resource.

Hope the approach is clear. Also, this is not suggested if the number of fields is too many.

Hope it helps and Happy CRMing.

Do leave me comments if you want to discuss.

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s