<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>crm.atechnisch.nl &#187; Business Required</title>
	<atom:link href="http://crm.atechnisch.nl/tag/business-required/feed/" rel="self" type="application/rss+xml" />
	<link>http://crm.atechnisch.nl</link>
	<description>How to improve Microsoft Dynamics CRM</description>
	<lastBuildDate>Wed, 25 Nov 2009 08:12:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>(Disabled) Business Required Fields</title>
		<link>http://crm.atechnisch.nl/2008/01/disabled-business-required-fields/</link>
		<comments>http://crm.atechnisch.nl/2008/01/disabled-business-required-fields/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 15:02:25 +0000</pubDate>
		<dc:creator>Huib Aarts</dc:creator>
				<category><![CDATA[Client Side Scripting]]></category>
		<category><![CDATA[MS CRM 3.0 Application]]></category>
		<category><![CDATA[MS CRM 3.0 Customizations]]></category>
		<category><![CDATA[MS CRM 4.0 Application]]></category>
		<category><![CDATA[MS CRM 4.0 Customizations]]></category>
		<category><![CDATA[Business Required]]></category>
		<category><![CDATA[OnSave]]></category>

		<guid isPermaLink="false">http://crm.atechnisch.nl/2008/01/25/disabled-business-required-fields/</guid>
		<description><![CDATA[If you disable a Business Required field, it is no longer Business Required. So the field can be empty if you save the Form.An easy way to solve this is to manually check the Required condition on the onSave of the form.
If the field is empty the onSave is stopped.

if (crmForm.all.new_requiredfield.DataValue == null)
{
alert (&#34;You must [...]]]></description>
			<content:encoded><![CDATA[<p>If you disable a Business Required field, it is no longer Business Required. So the field can be empty if you save the Form.An easy way to solve this is to manually check the Required condition on the onSave of the form.<br />
If the field is empty the onSave is stopped.</p>
<pre class="brush: css;">
if (crmForm.all.new_requiredfield.DataValue == null)
{
alert (&quot;You must create this record related to its parent, the required field will be mapped.&quot;);
event.returnValue = false;
return false;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://crm.atechnisch.nl/2008/01/disabled-business-required-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
