Login / Register  search  syndication  about

          Kris Halsrud's Blog

Kris Halsrud on development and Integration with CRM and Development

Allow SalesLogix currency controls in the web client to accept negative values

The SalesLogix currency controls in SalesLogix do not by default allow a negative number to be entered.  You can change this by editing the sage-controls-currency.js and sage-control.js file.  The sage-controls.js file is the file that is actually used by the web client and is a minified compiled version of all of the other sage-controls files.


There are two functions that need to be altered.  One on the client keypress, and one on the client change event of the control.

 

The key press code needs to be changed like so (change in yellow):

function RestrictToCurrency(e) {
    var code = e.charCode || e.keyCode;
    return (code == this.Symbol.charCodeAt(0) || code == this.NegativeSign.charCodeAt(0) || RestrictToNumeric(e, this.GroupSeparator.charCodeAt(0), this.DecimalSeparator.charCodeAt(0)));
}

Then the other client script function to be altered is the on change.  There is a function called Currency_FormatCurrency()  that is used to format the value.  Based on your currency settings you may need to alter it differently.  For US regional settings if you look in the case statement and change the first case, it works.

        var currencyValue = "";
        if (isNegative)
        {
            switch (this.NegativePattern)
            {
                case 0: // ($n)
                    currencyValue = String.format("-{0}{1}", this.Symbol, result);
                    break;

 Making these 2 changes should allow the currency control to accept a - sign to be entered. 

What's This?
  
Bookmark and Share

About Kris Halsrud

   Kris Halsrud is a Senior Analyst / Developer for Customer FX Corporation.


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