Login / Register  search  syndication  about

          Kris Halsrud's Blog

Kris Halsrud on development and Integration with CRM and Development

Changing the default condition operator in the SalesLogix Group Lookup Control in the SalesLogix 7.5.4 Web Client

 

 

I blogged recently here about how you can change the default operator behavior for the Lookup Controls found on the smart parts in the SalesLogix Web client.  The SalesLogix group area also has a lookup control, that while it looks similar to the standard Lookup Control is actually a separate control with different code base.  However you can make a similar type of change to this control as well.

The Group Lookup behavior is largely controlled by client side libraries.  This client side code is contained in several files inside the VFS structure.  The location is under Portal Manager…Sage SalesLogix…Support Files…Sage-Controls…Sage-Controls-Group 

The file involved in this behavior is the sage-controls-group-lookupmanager.js file. If you look in that file you will see a function defined called getTemplateObj that looks like this:

Sage.GroupLookupManager.prototype.getTemplateObj = function() {
    var mgr = Sage.Services.getService("GroupLookupManager")
    mgr.setupTemplateObj =  (window.lookupSetupObject) ? window.lookupSetupObject : {
        fields: [{ fieldname: '', displayname: ''}],
        operators: [{ symbol: 'sw', display: 'Starting With' },
            { symbol: 'like', display: 'Contains' },
            { symbol: 'eq', display: 'Equal to' },
            { symbol: 'ne', display: 'Not Equal to' },
            { symbol: 'lteq', display: 'Equal or Less than' },
            { symbol: 'gteq', display: 'Equal or Greater than' },
            { symbol: 'lt', display: 'Less than' },
            { symbol: 'gt', display: 'Greater than'}],
        numericoperators: [{ symbol: "eq", "display": "Equal to" },
            { symbol: "ne", "display": "Not Equal to" },
            { symbol: "lteq", "display": "Equal or Less than" },
            { symbol: "gteq", "display": "Equal or Greater than" },
            { symbol: "lt", "display": "Less than" },
            { symbol: "gt", "display": "Greater than"}],
        index: 0,
        hideimgurl: 'images/icons/Find_Remove_16x16.gif',
        addimgurl: 'images/icons/Find_Add_16x16.gif',

        hideimgalttext: 'Remove Condition',
        addimgalttext: 'Add Condition',
        addrowlabel: 'Lookup by:',
        hiderowlabel: 'And:',
        srchBtnCaption: 'Search',
        errorOperatorRequiresValue: 'The operator requires a value'
    }

}

Similar to the other lookup control, the “default” operator for the lookup control is based on the order the operators get added to the list.  If we change the order to something like this, the default lookup will be contains instead of starting with:

Sage.GroupLookupManager.prototype.getTemplateObj = function() {
    var mgr = Sage.Services.getService("GroupLookupManager")
    mgr.setupTemplateObj =  (1!=1) ? window.lookupSetupObject : {
        fields: [{ fieldname: '', displayname: ''}],
        operators: [
            { symbol: 'like', display: 'Contains' },
            { symbol: 'sw', display: 'Starting With' },
            { symbol: 'eq', display: 'Equal to' },
            { symbol: 'ne', display: 'Not Equal to' },
            { symbol: 'lteq', display: 'Equal or Less than' },
            { symbol: 'gteq', display: 'Equal or Greater than' },
            { symbol: 'lt', display: 'Less than' },
            { symbol: 'gt', display: 'Greater than'}],
        numericoperators: [{ symbol: "eq", "display": "Equal to" },
            { symbol: "ne", "display": "Not Equal to" },
            { symbol: "lteq", "display": "Equal or Less than" },
            { symbol: "gteq", "display": "Equal or Greater than" },
            { symbol: "lt", "display": "Less than" },
            { symbol: "gt", "display": "Greater than"}],
        index: 0,
        hideimgurl: 'images/icons/Find_Remove_16x16.gif',
        addimgurl: 'images/icons/Find_Add_16x16.gif',

        hideimgalttext: 'Remove Condition',
        addimgalttext: 'Add Condition',
        addrowlabel: 'Lookup by:',
        hiderowlabel: 'And:',
        srchBtnCaption: 'Search',
        errorOperatorRequiresValue: 'The operator requires a value'
    }

}

One important thing to note is the change of the condition. T his is needed to force the page to always load from this library rather than the behavior built into the lookup control in the Sage web control assembly.

This code is also in the Sage-Controls.js file which is one level up.  This file is a minified consolidated file of all of the other library files.  This minified version is what is actually used by the deployed site so you will need to make the same changes to that file in order to see the changes take effect.

One other thing to note is that if you do not see the behavior change after making these modifications, you should clear out your browsers history cache as it is likely it has stored the old client side code and is using that.

 

 

What's This?
  
Bookmark and Share

About Kris Halsrud

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


Related Content
   Upgrading SalesLogix vs Migration to SalesLogix version 8.0
We want to get off the desktop versions and into the Cloud. I have been working with Sage and our BP alr
Posted on Jun 19, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   Unicode data from SalesLogix not exporting from the web Crystal Report viewer to PDF correctly.
The later version of SalesLogix allow the storage of Unicode data in the database.  This allows for
Posted on Jun 07, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
   Problems managing team membership in the SalesLogix web client
In the Web Client's Administration area under teams (In both v7.5x and 8.0x versions):1) When addin
Posted on Jun 03, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
   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
 
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