Looking for a way to hide the "select all" button when requesting access

We are looking for a way to hide or disable the select all button option when

a user is requesting access. This is often incorrectly selected resulting in

a large request that is incorrect.

 

In this screenshot, i have indicated the seletion that i am referring to, is

there a way to do this?

 

SharonCreaghan_0-1692712115680


  • I don't think there is such configuration in the product.

    You can raise a new enhancement idea here to add this configuration

    (indicating the business/security need) - Idea Exchange

    As a workaround, you can try the following approach to hide that check box

    using css.

    Create a CSS file with the following content

    1. #Finance_Team_header #select-all{
    2. display:none;
    3. }
    4.  
    5. #All_Entitlements_header #select-all{
    6. display:none;
    7. }

     

    Note: The ids Finance_Team_header and All_Entitlements_header are

    from my environment and you will need to adjust it to the IDs in your drop

    down.

     

    BorisLekumovich_0-1692757502509 

    Here is the relevant section from the html:

    BorisLekumovich_1-1692757760369 

    Upload the file via Admin->User Interface->Files (choose css in the dropdown)

    I've tried it on v7.5.2

     

    I didn't test it properly so I leave that part to you to confirm that this is working ok and **other** functionalities are not impacted.

    Expand Post
    Selected as Best
  • I don't think there is such configuration in the product.

    You can raise a new enhancement idea here to add this configuration

    (indicating the business/security need) - Idea Exchange

    As a workaround, you can try the following approach to hide that check box

    using css.

    Create a CSS file with the following content

    1. #Finance_Team_header #select-all{
    2. display:none;
    3. }
    4.  
    5. #All_Entitlements_header #select-all{
    6. display:none;
    7. }

     

    Note: The ids Finance_Team_header and All_Entitlements_header are

    from my environment and you will need to adjust it to the IDs in your drop

    down.

     

    BorisLekumovich_0-1692757502509 

    Here is the relevant section from the html:

    BorisLekumovich_1-1692757760369 

    Upload the file via Admin->User Interface->Files (choose css in the dropdown)

    I've tried it on v7.5.2

     

    I didn't test it properly so I leave that part to you to confirm that this is working ok and **other** functionalities are not impacted.

    Expand Post
    Selected as Best