activities
latest
false
Importante :
A tradução automática foi aplicada parcialmente neste conteúdo.
UiPath logo, featuring letters U and I in white
Workflow Activities
Last updated 13 de nov de 2024

Removing the Delete button from Edit Grid using custom CSS

This tutorial demonstrates how to use custom CSS to remove the delete button from an Edit Grid component.
  1. In the same form where you added the Edit Grid, add an HTML Element component input the below CSS snippet:
    <p></p>
    <style>
    .my-edit-grid .removeRow {
        display: none;
    }
    </style><p></p>
    <style>
    .my-edit-grid .removeRow {
        display: none;
    }
    </style>
    This code snippet makes items with the class removeRow (representing delete buttons) invisible on the webpage. It does this by using the class my-edit-grid on their containing elements and setting the display property to none.
  2. Hover over the Edit Grid and select Edit JSON.
  3. In the Component JSON add a customClass parameter that references the my-edit-grid custom CSS class.
    Insert this parameter before the components parameter.
    "customClass": "my-edit-grid","customClass": "my-edit-grid",
    docs image
  4. Save the component and the form.

Esta página foi útil?

Obtenha a ajuda que você precisa
Aprendendo RPA - Cursos de automação
Fórum da comunidade da Uipath
Uipath Logo White
Confiança e segurança
© 2005-2024 UiPath. Todos os direitos reservados.