<?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; clickable</title>
	<atom:link href="http://crm.atechnisch.nl/tag/clickable/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>Make website field clickable</title>
		<link>http://crm.atechnisch.nl/2008/12/make-website-field-clickable/</link>
		<comments>http://crm.atechnisch.nl/2008/12/make-website-field-clickable/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 15:35:34 +0000</pubDate>
		<dc:creator>Huib Aarts</dc:creator>
				<category><![CDATA[Client Side Scripting]]></category>
		<category><![CDATA[MS CRM 3.0 Customizations]]></category>
		<category><![CDATA[MS CRM 4.0 Customizations]]></category>
		<category><![CDATA[clickable]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://crm.atechnisch.nl/2008/12/10/make-website-field-clickable/</guid>
		<description><![CDATA[On the standard contact form the field website is not clickable. You have to copy the url to a browser address bar. This is probably because of the synchronization with outlook.
To make the field clickable on the form you can add the following code to the OnLoad of the Contact form.

/*** make website field clickable***/
//change [...]]]></description>
			<content:encoded><![CDATA[<p>On the standard contact form the field website is not clickable. You have to copy the url to a browser address bar. This is probably because of the synchronization with outlook.<br />
To make the field clickable on the form you can add the following code to the OnLoad of the Contact form.</p>
<pre class="brush: css;">
/*** make website field clickable***/
//change color and make underlined
crmForm.all.websiteurl.style.color = &quot;#0000ff&quot;;
crmForm.all.websiteurl.style.textDecoration = &quot;underline&quot;;
/* Double Click website to Open*/
function CreateURL(WebSite) {
    return function() {
        if (WebSite != null &amp;&amp; WebSite.value.length &gt; 0) {
            var prefix = WebSite.value.substring(5, 0);
            if (prefix == &quot;http:&quot;) {
                window.open(WebSite.value);
            }
            else {
                window.open(&quot;http://&quot; + WebSite.value);
            }
        }
    }
}
crmForm.all.websiteurl.attachEvent('ondblclick', CreateURL(crmForm.all.websiteurl));
</pre>
]]></content:encoded>
			<wfw:commentRss>http://crm.atechnisch.nl/2008/12/make-website-field-clickable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
