Login / Register  search  syndication  about

          Ryan Farley's Blog

Ryan Farley on .NET Development with a focus on CRM Development for SalesLogix

Creating Phone Links in SalesLogix 7.2 Web Client

If you're working with the new SalesLogix 7.2 Web Client & the Application Architect then the place to be is the slxdeveloper.com forum for the SalesLogix 7.2 Web. It has some really great discussions going on. One of these great discussions is where an slxdeveloper.com member needs to make the phone numbers hyperlinks. A user can click the phone number to launch a browser window, passing the phone number, to initiate a phone call. Let's take a look.

The following steps will convert the phone fields on the ContactDetails quickform to hyperlinks. When clicked, a new browser window will be launched and the phone number passed in the URL.

  1. Open the ContactDetails quick form under the Contact entity
  2. Locate the phone control named phnWorkPhone and remove it.
  3. Add a Button to the form where the phone control was before. Set the ButtonType to Link. Open the DataBindings and map the WorkPhone property to the control's Caption property.
  4. Create a LoadAction for the form and select C# Snippet for the action. Make sure you set the action's OnRepaintEvent to True (this is important).
  5. In the C# code for the action, we will get a reference to the current Contact entity and create the URL for the phone link button using the contact's WorkPhone value. We'll use the button control's OnClientClick property to set the javascript code to open the URL in a new window. The code will look like the following:

Sage.Entity.Interfaces.IContact contact = this.BindingSource.Current as Sage.Entity.Interfaces.IContact;
if (contact != null)
{
    buttonDial.OnClientClick = string.Format("window.open('http://mydeskphone/dial?number={0}');", contact.WorkPhone);
}

Easy and elegant. I completely love the new SalesLogix Web.

What's This?
  
Bookmark and Share

About Ryan Farley

   Ryan Farley is the Director of Development for Customer FX and creator of slxdeveloper.com. He's been blogging regularly about SalesLogix since 2001 and believes in sharing with the community. He loves C#, Javascript, Python, web development, open source, and Linux. He also loves his hobby as an amateur filmmaker.

View the SalesLogix Mobile Seveloper Series
View the SalesLogix SData Developer Series
View the Git for the SalesLogix Developer series



Related Content
   Demystifying SalesLogix Web: Dashboards and Analytics Tools
Join us for a free webinar, Wednesday, May 15th at 2pm CDT. The SalesLogix Web dashboards and analytics
Posted on May 08, 2013 by Brianna Tinjum to The Inbox
 
   How can I make sure I am logging into the correct SalesLogix web client database?
I just recently did a updated conversion of our production database (which is 6.2x) and I'm trying to
Posted on Apr 15, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   The SLXOLEDB.1 provider is not registered on the local machine
Ever seen this error before when logging into the SalesLogix web client?  Ofter this is a result of
Posted on Apr 04, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
   Modifying SLX Mobile 2.0 to deploy customizations on a normal App Architect deployment
 In order to have your customizations, that have been added to the SalesLogix Mobile 2.0 client, be
Posted on Mar 27, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
   Is there software or Hardware that works with SalesLogix Web Client that can dial the phone number in order to eliminate manual dials?
Is there software or Hardware that works with SalesLogix Web Client that can dial the phone number in ord
Posted on Mar 04, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
Comments

No Comments

Leave a Comment

(required)  
(optional)
(required)  
Add
All contents Copyright © 2013 Customer FX Corporation
Customer FX Corporation
2324 University Avenue West, Suite 115
Saint Paul, Minnesota 55114
Tel: 800.728.5783

  Follow @CustomerFX on twitter
Follow the best news, tips, and articles
  Subscribe to Customer FX on youtube
Watch SalesLogix tutorial videos from Customer FX
Login / Register