Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Contact Email Address

0 views
Skip to first unread message

Bobby

unread,
Jul 12, 2006, 11:03:02 AM7/12/06
to
When I type in an email address into a Contact, it goes in with blue font and
an underline but I am unable to click on it once the contact is saved to send
a Contact an email? Is this a problem with my installation or is this by
design???

-Bobby

Jim Wang

unread,
Jul 13, 2006, 4:36:01 AM7/13/06
to
It's by design.


--

Jim Wang
Business Solutions Engineer
MCSE, MCDBA, Microsoft CRM Professional
United Kingdom

Michael Höhne

unread,
Jul 13, 2006, 5:43:59 AM7/13/06
to
It's by design. However, you can use the following code placed in the OnLoad
event to open a new email when double-clicking the field:

if (crmForm.all.emailaddress1 != null) {

crmForm.all.emailaddress1.ondblclick = function() {

var email = crmForm.all.emailaddress1.DataValue;

if ((email != null) && (email.length > 0)) {
window.navigate("mailto:" + email);
}
}
}


--
Michael

http://www.stunnware.com/crm

----------------------------------------------------------

"Bobby" <Bo...@discussions.microsoft.com> schrieb im Newsbeitrag
news:FA4432F8-E351-4B8E...@microsoft.com...

0 new messages