This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

View Settings hide on web portal

After upgrading to v8.0.2, we're unable to hide "View Settings" on web portal. Unchecking option on "Grid Band" hide most of the drop down option but doesn't remove "View Settings" link completely. Didn't face this issue in previous version, can anyone help us achieve this in v8.0.2

  • From elsewhere:

    Is it possible to hide just the "View Settings" option in a grid menu?  I know there is the option to completely hide the menu, but that will also hide the search box which we don't want.

    Answer:

    Not in the data model, because some of the options cannot be disabled individually.

    You could insert CSS on the page level to hide the menu:

    .imx-grid-button {
      display: none;
    }

    Just created a CSS doc extension to the "VI_Styles_Grid_Default" layout definition and added the line of code.

    Kudos to Hanno and Kenny for providing the answers.