Maximo Open Forum

 View Only
  • 1.  How to disiable download button in table?

    Posted 05-22-2025 10:15

    Can I disable below download button for specific users?

    If I use "webclient.maxdownloadrows" system property, it will be effective for every user. I am looking for something like attaching Sigoption to the download button, but I couldn't locate it in XMLs.

    Thank you in advance!

    Aditi


    #MaximoApplicationSuite

    ------------------------------
    Aditi Jain
    Accenture
    ------------------------------


  • 2.  RE: How to disiable download button in table?

    Posted 05-24-2025 01:57
    Edited by Sankar Ganesh V S 05-24-2025 01:58

    Hi Aditi, 

    It is not enabled to configure via application designer. 

    The 'table download' feature is defined at tabledownload.jsp in 'maximouiweb\webclient\common'. 

    Modifying this would be a heavy customization.


    Thanks!

    ------------------------------
    Sankar Ganesh V S
    DXC Technology
    ------------------------------



  • 3.  RE: How to disiable download button in table?

    Posted 05-27-2025 11:36

    Hello Aditi!

    This can be done on a global level using CSS customization.  If you add the following lines to any existing CSS customization (from the Admin screen > Configuration > User Interface Customization), the download button will be removed from all tables:

    /* add the selector [title="Download"] into the not pseudo-class */
    .hbsh a:not(.addNewRowbtn, [title="Download"]) {
        display: flex !important
    ;
    
    /* specify that any links with title = "Download" should NOT be displayed */
    .hbsh a[title="Download"] {
        display: none !important;
    }


    ------------------------------
    Jade Warren
    Great River Energy
    ------------------------------



  • 4.  RE: How to disiable download button in table?

    Posted 06-20-2025 01:34

    Thank you for your response @Sankar Ganesh V S and @Jade Warren.

    I get the conclusion that removal of download button is not possible for a specific user. Though it can be removed from all the tables from front end customization.

    That helps. Thanks again!



    ------------------------------
    Aditi Jain
    Accenture
    ------------------------------