Skip to Main Content
IBM Sustainability Software - Ideas Portal


This portal is to open public enhancement requests against the products and services belonging to IBM Sustainability Software. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

Status Delivered
Created by Guest
Created on Jan 29, 2026

Mobile: Manage navigator should respect sigoption, hidden, and disabled attributes for role-based applications

In MAS Mobile 9.1, the Manage left navigation panel does not honor the sigoption, hidden, or disabled attributes defined on <menu-item> in app.xml, while the Role Based Application and Mobile device Navigator page evaluates them correctly.

As long as a <menu-item> exists in app.xml, it is always rendered in the Manage navigator, regardless of user security or role-based configuration. This creates inconsistent behavior between the RBA navigator and the Manage left navigation and limits the ability to properly tailor technician applications.

Expected behavior:
The Manage left navigation should evaluate sigoption, hidden, and disabled attributes in the same way as the RBA and Mobile device navigator, allowing consistent role-based menu visibility across the mobile application.

Idea priority Medium
Needed By Not sure -- Just thought it was cool
  • ADMIN RESPONSE
    Jun 29, 2026

    Hi, Thank you for taking the time to provide your ideas to IBM. Your idea was delivered in our recent product release.

    For our latest release information see: https://www.ibm.com/docs/en/announcements

    Thank you again for your feedback.

  • Guest
    Mar 10, 2026

    Hi Jordan,
    Thanks for the update.

  • Admin
    JORDAN SMITH
    Feb 27, 2026

    Thank you for reporting this behavior and for the detailed configuration examples.

    We investigated this in both MAS Mobile 9.1 (latest 9.1.x patch) and MAS Mobile 9.2, and we were not able to reproduce a defect where the Manage left navigation ignores valid security configuration. Based on testing and design review, the observed behavior is by design rather than a product defect.

    How menu visibility is evaluated

    • Menu items in the Manage left navigation are built at application publish time, not evaluated dynamically at runtime.

    • During the build/publish process, menu entries are written to the MAXAPPSPAGE table based on the application configuration.

    As a result:

    • sigoption

      • This is the supported and recommended mechanism for controlling menu visibility.

      • sigoption values are evaluated at runtime and are respected by the Manage left navigation in both 9.1 and 9.2.

    • hidden="true"

      • If set explicitly to true, the menu item is removed from the side navigation at build time.

      • Expressions inside hidden (for example hidden="{app.state.xxx}") are not evaluated and are not supported.

    • disabled

      • This attribute was never intended to hide menu items.

      • It is designed to make an item read-only, not remove it from navigation.

    Why this differs from the RBA navigator

    The RBA navigator and application pages are rendered when the application is already running, which allows them to evaluate certain runtime conditions. In contrast, the Manage side navigation is rendered before the application loads, so it cannot evaluate expressions or page state at runtime. Because of this architectural difference, expression-based hiding cannot be supported for the Manage navigator.

    Recommended approach

    To achieve consistent, role-based menu control for technician applications:

    • Use security-based configuration with sigoption to control which menu items are visible to specific roles.

    • Avoid using expression-based hidden or disabled attributes for Manage navigation, as these are not evaluated and are not supported.

    Conclusion

    • The Manage left navigation does respect sigoption as designed.

    • Expression-based use of hidden or disabled is not supported and will not be added due to architectural constraints.

    • This means the reported issue is not a defect, and no product change is planned in this area.

    We appreciate the feedback and understand the desire for more dynamic control. At this time, security-driven (sigoption) configuration is the correct and supported solution.


  • Admin
    JORDAN SMITH
    Feb 1, 2026

    Thanks; this seems like a valid idea and we will add it to the backlog

  • Guest
    Jan 30, 2026

    This is the issue I encountered.

    Description:
    I am trying to hide Materials & Tools, Map, and Create Work Order menu items from the Manage navigator for technician users.

    I attempted to control visibility using the sigoption, hidden, and disabled attributes on the <menu-item> component.

    These attributes work as expected on the RBA navigator page, but do not hide the corresponding menu items in the Manage left navigation panel.

    Steps / Configuration Tested:

    1. Added sigoption, hidden, and disabled attributes to the following menu items in app.xml:

    <menu-item label="Materials &amp; Tools" icon="maximo:materialsandtools" page="materials" id="r9zjz"/>

    <menu-item label="Map" icon="maximo:map" page="map" id="xb5jv"/>

    2. Verified behavior:

    - Works correctly in the RBA navigator page

    - Does not hide menu items in the Manage left navigation panel


    Additional Findings:

    If the corresponding <menu-item> definitions are completely removed from app.xml:

    The menu items are hidden correctly in both RBA and on the mobile device

    However, the menu labels are rendered in uppercase, which appears to be a side effect and not the desired behavior.

  • Guest
    Jan 30, 2026

    This is the latest response from Support team:
    I have reviewed the behavior you are seeing in MAS Mobile 9.1 vs Manage and discuss it internally, and your configuration is correct.

    The RBA Navigator page fully respects sigoption, hidden and disabled methods, but Manage left navigation panel does not evaluate them on <menu-item>. This is solely driven by the presence of the <menu-item> in the app.xml and the page routing configuration. The results is that if the <menu-item> exists, it renders regardless of security attributes.

    This is by design in 9.1 and is not a misconfiguration. We can call it a limitation.

    On the other hand, when you complete remove the <menu-item> in app.xml, the Manage navigator falls back to a generated/default navigation model, putting labels in uppercase formatting and differently, hence you see the all-caps effect.

    Since this is by design and limited to this functionality, from a support perspective you can raise on idea to have this tracked by the product owner, although they are preparing some changes with 9.2 and forward, however, I cannot confirm if the Manage navigator will be able to evaluate sigoptions, hidden and disabled methods similar to the RBA navigator.

    Another workaround would be to create a tailored technician-specific mobile app and remove the unwanted menu items (Materials & Tools, Map, Create Work Order) from that app’s app.xml, but I'm not sure if that addressed your business need.

  • Admin
    JORDAN SMITH
    Jan 29, 2026

    Under IBM review to see if this is simply a bug in the <menu-item> registry for sigoption