back to top

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.

 

 

Contact Customer FX for your CRM project
We let our expertise speak for itself - let us know how our all-star team can help on your CRM project
About the Author
Kris Halsrud
Kris Halsrud
Kris Halsrud is a Senior Analyst / Developer for Customer FX Corporation.

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Infor CRM SLX 10.0: Delegate Ownership Changes for “Everyone” Records

Learn how the new EveryoneOwnerAssignment secured action in Infor CRM SLX 10.0 allows designated users to change ownership of Everyone-owned records without requiring Administrator access.

Related Articles

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Related Videos