Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

242
Vistas
React.js Mui Treeview: How to make on nodeselect not collapse

I'm trying to make the Treeview not collapse every time I select a node. When node is selected it will render button depending on which node you have selected. Here is an example I made. https://codesandbox.io/s/summer-water-33fe7?file=/src/App.js

about 4 years ago · Santiago Gelvez
2 Respuestas
Responde la pregunta

0

TreeItem has a disabled prop which will not allow user to collapse the TreeItem on click. You can dynamically set the value of the disabled prop when you do not want it to collapse.

For example :

const [disabled, setDisabled] = useState(true);

<TreeItem nodeId="5" label="Five" disabled={disabled}>

// setDisabled(false); // Set to false when we want it to be collapsable.
about 4 years ago · Santiago Gelvez Denunciar

0

I found a way but not sure if this is the best way so basically I added all the ids that I want to be expanded all the time a.k.a every i.d in the data.

const DataTreeView = ({ treeItems }) => {
    return (
      <TreeView
        defaultCollapseIcon={<ExpandMoreIcon />}
        defaultExpandIcon={<ChevronRightIcon />}
        defaultExpanded={[
          "root",
          "root2",
          "Parent 1",
          "Parent 2",
          "Parent 3",
          "Parent 4",
          "1",
          "2",
          "3",
          "4"
        ]}
        onNodeSelect={action}
      >
        {getTreeItemsFromData(treeItems)}
      </TreeView>
    );
  };
about 4 years ago · Santiago Gelvez Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda