<?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; label</title>
	<atom:link href="http://crm.atechnisch.nl/tag/label/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>Use Tooltips as Hot Help</title>
		<link>http://crm.atechnisch.nl/2009/07/use-tooltips-as-hot-help/</link>
		<comments>http://crm.atechnisch.nl/2009/07/use-tooltips-as-hot-help/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 11:24:01 +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[Javascript]]></category>
		<category><![CDATA[label]]></category>
		<category><![CDATA[Microsoft Dynamics CRM 4.0]]></category>

		<guid isPermaLink="false">http://crm.atechnisch.nl/?p=137</guid>
		<description><![CDATA[There are multiple ways in MS Dynamics CRM (MS CRM) to help users using the system. Next to training and external guides, the system can also provide information. In the system the help files (on the top right of every screen) can be improved. As you will know this has advantages and disadvantages.
Another option is [...]]]></description>
			<content:encoded><![CDATA[<p>There are multiple ways in MS Dynamics CRM (MS CRM) to help users using the system. Next to training and external guides, the system can also provide information. In the system the help files (on the top right of every screen) can be improved. As you will know this has advantages and disadvantages.</p>
<p>Another option is to improve the tooltips.</p>
<p>The modifying and maintaining of the tooltips will be discussed in this post.</p>
<p>A tooltip is a small box, which contains a brief text message explaining the field. It appears below the label of a field on the MS CRM forms when the pointer of a mouse passes over or rests on that label and which contains a brief text message identifying or explaining the object. When the pointer moves away from the label the tooltip disappears.</p>
<p>Tooltips are available on every field on a MS CRM form. The current tooltips show the text of the label, which, in my opinion, does  not have any benefits. If you can read to label, you can read to tooltip. But the good thing is, we can change the contents of the current tooltips.</p>
<p>At the moment the only restrictions to the tooltips are that only unformatted text can be used and that the total amount of characters is no more than 512.</p>
<p>The onLoad code:</p>
<pre class="brush: plain;">

crmForm.all.new_attribute_c.title = “contents of the tooltip”
</pre>
<p>Example:</p>
<p><a href="http://crm.atechnisch.nl/crm_upload/2009/07/tooltip.gif" target="_blank"><img class="size-full wp-image-143 alignleft" title="tooltip" src="http://crm.atechnisch.nl/crm_upload/2009/07/tooltip.gif" alt="tooltip" width="231" height="96" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://crm.atechnisch.nl/2009/07/use-tooltips-as-hot-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add label to “Save and New” Button</title>
		<link>http://crm.atechnisch.nl/2008/01/add-label-to-save-and-new-button/</link>
		<comments>http://crm.atechnisch.nl/2008/01/add-label-to-save-and-new-button/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 15:28:16 +0000</pubDate>
		<dc:creator>Huib Aarts</dc:creator>
				<category><![CDATA[Client Side Scripting]]></category>
		<category><![CDATA[MS CRM 4.0 Customizations]]></category>
		<category><![CDATA[label]]></category>
		<category><![CDATA[Save and New]]></category>

		<guid isPermaLink="false">http://crm.atechnisch.nl/2008/01/25/add-label-to-%e2%80%9csave-and-new%e2%80%9d-button/</guid>
		<description><![CDATA[
//Add Label &#34;Add another Record&#34; to &#34;Save and New&#34; button
var SaveNew = document.all._MBcrmFormSubmitCrmForm59truetruefalse;
if (SaveNew != null)
{
SaveNew.title = 'Add another Record';
SaveNew.children[0].innerHTML += 'Add another Record';
//and change the color of the new text
SaveNew.style.color = '#15428b';
}

]]></description>
			<content:encoded><![CDATA[<pre class="brush: css;">
//Add Label &quot;Add another Record&quot; to &quot;Save and New&quot; button
var SaveNew = document.all._MBcrmFormSubmitCrmForm59truetruefalse;
if (SaveNew != null)
{
SaveNew.title = 'Add another Record';
SaveNew.children[0].innerHTML += 'Add another Record';
//and change the color of the new text
SaveNew.style.color = '#15428b';
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://crm.atechnisch.nl/2008/01/add-label-to-save-and-new-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
