CRM 2023 R1 - Can't Filter Dashboard Gadgets

SOLVED

Hi All

Is it just me, but in my demo system and customer's system (only two I have put CRM 2023 R1.1 in) all dashboard gadgets that used to have a mini filter at the top of them, no longer have the ability to filter

Parents
  • 0

    Hi Matthew, 

    This was a styling issue - the Filter area was given a zero height.

    Code change required in CSS lines 480 & 483 \Release\WWWRoot\Themes\gwtext_shared\ergonomic\theme.css

    .Gadget-headerPanel{

        font-family: "Sage UI",Tahoma,Arial;

        font-size:11px;

        text-align:left;

        text-decoration:none;

        height:30px;

    }

    .Gadget-toolbarSpacer{

        height:30px;

        width:1;

        border-width:0;

    }

Reply
  • 0

    Hi Matthew, 

    This was a styling issue - the Filter area was given a zero height.

    Code change required in CSS lines 480 & 483 \Release\WWWRoot\Themes\gwtext_shared\ergonomic\theme.css

    .Gadget-headerPanel{

        font-family: "Sage UI",Tahoma,Arial;

        font-size:11px;

        text-align:left;

        text-decoration:none;

        height:30px;

    }

    .Gadget-toolbarSpacer{

        height:30px;

        width:1;

        border-width:0;

    }

Children