Skip to main content

Notifications

Customer experience | Sales, Customer Insights,...
Suggested answer

hide and show tab based on condition using fetch xml with liquid template

Posted on by 5

hi,

 

how to hide and show tab based on condition using fetch xml with liquid template in power portal.

pastedimage1657180048529v2.png

I want to hide share your link tab , when condition is not matched with them if condition is matched then show this tab.

in this tab I add a link, when we click on this tab then open a new web page and there are  one field that name is report. if this field contain data then "share your link " tab is shown otherwise this tab will be hide .

 

thanks

  • Suggested answer
    RodRodriguez Profile Picture
    RodRodriguez on at
    RE: hide and show tab based on condition using fetch xml with liquid template

    Howdy,

    Here is a basic JavaScript that hides and shows a tab based on the value in a whole number field, but you can change that to meet the conditions you are looking for, just change "DETAILS_TAB" to the name of your tab and "new_wholenumber" to the name of one of the fields you are going to use to check the condition(s).  Right now it is set so that if the whole number field is "2" then the field is shown, otherwise it is hidden.  Rinse, lather, repeat if you need more than one field for your evaluations:

    function hideOrShowTabFromWholeNumberField(executionContext)

    {

    var formContext = executionContext.getFormContext();

    var tabObj = formContext.ui.tabs.get('DETAILS_TAB');

    var wholeNumberFieldValue = formContext.getAttribute('new_wholenumber');

    tabObj.setVisible(false);

    if (wholeNumberFieldValue.getValue() == 2)

    {

    tabObj.setVisible(true);

    }

    }

    Just make sure to have that function loaded on the page you want to customize and that the function is set to fire "on load" or when the field changes or whatever :)

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Community AMA December 12th

Join us as we continue to demystify the Dynamics 365 Contact Center

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,253 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,188 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans