web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Customer experience | Sales, Customer Insights,...
Suggested Answer

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

(0) ShareShare
ReportReport
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

I have the same question (0)
  • Suggested answer
    RodRodriguez Profile Picture
    on at

    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

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Women in Power Builds Momentum

Expanding mentorship, skilling, and AI innovation

Congratulations to the June Top 10 Community Leaders

These are the community rock stars!

Leaderboard > Customer experience | Sales, Customer Insights, CRM

#1
Manoj - ManoVerse Profile Picture

Manoj - ManoVerse 131 Super User 2026 Season 1

#2
11manish Profile Picture

11manish 95

#3
Hamza H Profile Picture

Hamza H 30 Super User 2026 Season 1

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans