primereact icon indicating copy to clipboard operation
primereact copied to clipboard

DataTable sort column slow

Open stef-pellegrino opened this issue 3 months ago • 0 comments

Hi, I filled a simple DataTable with a small dataset of about 200 rows. Everything works perfectly, but sorting is very slow! Did that

return (
    <DataTable  scrollable  resizableColumns  scrollHeight="600px"  selectionMode="single"
      style={{ minWidth: "50rem", width: "95%" }}
      value={data}
      size="small"
      header={header}
    >
      <Column style={{ width: "15%" }} field="mtr" header="Id."></Column>
      <Column field="val001" header="Name" sortable></Column>
      <Column field="val002" header="Test col2" sortable></Column>
      <Column field="val003" header="Test col3"></Column>
    </DataTable>
  );

stef-pellegrino avatar Oct 06 '25 07:10 stef-pellegrino