Login / Register  search  syndication  about

          Kris Halsrud's Blog

Kris Halsrud on development and Integration with CRM and Development

Adding a label to show when filters are active in the SalesLogix web client

In the SalesLogix web client, users can set filters when looking at groups.  These filters further restrict the results in the group.  The filter options are stored for the user in the database VFS table so that the next time the group is opened, the filters remain active.  The only problem with this approach is it is easy to forget that a filter has been applied to a group and therefor questions arise as to why records can't be seen. I am going to explain how you can modify the filter task pane so that a label appears once you set a filter for a group.

 The first thing to understand is where we will be making the change.  The task pane is the right hand side of the SalesLogix web client.  One of the components loaded into the task pane is the filter smart part.  This is a custom smart part that renders the appropriate filters based on the entity the user is on and what columns are in the current group. This smart part is located in the Application Architect under Portal Manager...Sage SalesLogix...SupportFiles...SmartParts...TaskPane..Filters.  There is both a Filters.ascx and Filter.ascx.cs file that need to modified.

Let's take a look first at modifying the markup file Filters.ascx.  At the top of this file we want to add markup for an ASP.Net label.  Here is the markup with our element added (shown highlighted):

<%@ Control Language="C#" AutoEventWireup="true" CodeFile="Filters.ascx.cs" Inherits="SmartParts_TaskPane_Filters" %>
<div style="display:none">
    <asp:Panel ID="Filters_RTools" runat="server">
        <asp:HyperLink runat="server" ID="edit" Text="edit" CssClass="filter-edit"></asp:HyperLink>       
    </asp:Panel>
</div>
<asp:Label ID="FiltersActive" runat="server" Text="Filters Active" ForeColor="Red"></asp:Label>

Below where we just added our label is an existing javascript function.  We want to modify this code by inserting the code shown highlighted below:

    Sage.PopulateFilterList = function () {
        var GroupContext = Sage.Services.getService("ClientGroupContext");
        if ((typeof GroupContext === "undefined") ||
        (typeof Filters === "undefined") ||
        (typeof GroupContext.getContext().CurrentActiveFilters === "undefined")) {
            //|| (Filters._groupContextService.getContext().CurrentName != GroupContext.getContext().CurrentName)) {
            window.setTimeout(Sage.PopulateFilterList, 20);
            var af = document.getElementById('ctl00_TaskPane_item_Filters_Filters_FiltersActive');
            if (af) af.style.display = 'none';
        } else {
            var af = document.getElementById('ctl00_TaskPane_item_Filters_Filters_FiltersActive');
            if (af) af.style.display = 'none';
            var svc = Sage.Services.getService("GroupManagerService");
            if (svc) {
                svc.clearDistinctValuesCache();
            }
            var filterMgr = Sage.GetCurrentFilterManager();
            var args = GroupContext.getContext().CurrentActiveFilters;
            if (args) {
                var af = document.getElementById('ctl00_TaskPane_item_Filters_Filters_FiltersActive');
                if (af) {
                    if (args == "")
                        af.style.display = 'none';
                    else
                        af.style.display = 'block';
                }
                $("div.LookupFilter input", filterMgr._context).each(function () {
                    this.value = '';
                });

This code looks for the label element on the user control and based upon some conditions sets the style "Display" attribute to control the visibility.  This element is a control we added at the top of the ascx file.

Now we need to switchover to the code file Filters.ascx.cs.  on the Page_load event, more javascript code is injected onto the page.  In the existing code look for a line declaring a HyperLink that looks like this:

        HyperLink clear = new HyperLink();

Below that line, we need to add a new line:

        string CFXscript = "var af = document.getElementById('ctl00_TaskPane_item_Filters_Filters_FiltersActive'); if(af) af.style.display = 'none';";

This line is creating a string consisting of javascript that again sets an element's display style based on a condition. Here is that excerpt of code with the changes shown highlighted:

        HyperLink clear = new HyperLink();
        string CFXscript = "var af = document.getElementById('ctl00_TaskPane_item_Filters_Filters_FiltersActive'); if(af) af.style.display = 'none';";
        clear.NavigateUrl = string.Format("javascript:" + CFXscript + "{0}.ClearFilters();", ID);
        clear.Text = GetLocalResourceObject("Clear_Filters").ToString();
        clear.Attributes.Add("style", "display: block; margin-bottom: 0.5em");
        this.Controls.Add(clear);

The result of this small amount of code will now display a label at the top of the filter task pane that shows whenever a group has an active filter in place for it.

 

 

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