차근차근 생활 & 코딩

[React] Material UI(MUI) - DataGrid Row 선택 행 콘솔 값 가져오기 본문

IT/REACT(리액트)

[React] Material UI(MUI) - DataGrid Row 선택 행 콘솔 값 가져오기

ssilook 2023. 1. 16. 15:26
반응형

아래 코드를 추가하면 됩니다.

 onSelectionModelChange={(itm) => console.log(itm)}

      <DataGridPro
        rows={rows}
        columns={columns}
        rowHeight={38}
        checkboxSelection
        onSelectionModelChange={(itm) => console.log(itm)}
        disableSelectionOnClick
        experimentalFeatures={{ newEditingApi: true }}
        onCellDoubleClick={(e) => childFunction(e)}
      />

 

Material UI 화면 / Console Log 화면

 

반응형
Comments