Tanstack Table ? React JS: React JS ? Tanstack Table? ??? ? ??? ?? ??? ????? ??? ??
P粉042455250
2023-09-02 23:04:17
<p>?? ?? js? ??? ?? tanstack ???(react-table)? ??????. ? ?? ??? ?? ??/??? ????? ???? ??? ? ??? ?????.
"??" ??? ??? ?? ??? ??? ???? ??? ??? ??? ???? ?????. </p>
<pre class="brush:php;toolbar:false;">......?? ??? ???
const [sorting, setSorting] = useState<SortingState>([]);
const [rowSelection, setRowSelection] = useState({});
const [isApproved, setIsApprove] = useState(false);
...?? ?
const columns = useMemo<ColumnDef<IEvent>[]>(
...? ??
{
accessorKey: "??",
??: () => ??,
?: (?: ??) =>
let status = cell.getValue();
return cell.getValue();
},
??? ??: true,
??????: ?,
},
{
accessorKey: "??",
??: () =><span>Action</span>
?: (?: ??) =>
console.log(isApproved);
?? (
<div className="inline-flex gap-x-2">
<??={`./${cell.row.id}/edit`}>??</Link>
<EVSDeleteButton id={cell.row.id} ??="???"
<??={`./${cell.row.id}/agenda`}>??</Link>
</div>
);
},
??? ??: ??,
??????: ??,
},</pre>
<p>? ?? ??? ?? ??('??')? ????? ?? ? ??? ????</p>
cell.row.original.status
訪問每行的 status
?? ???? ?? ??? ???? ?? ?? ?? ???? ??? ??? ? ????.
???
?? +0
P粉042455250