React-table v7,添加编辑行按钮

问题描述

我正在制作一个交互式反应表。 我的目标是制作一个表格,当点击表格单元格中的按钮时,每行都可以编辑。

我设计了一个 EditableCell,如下所示:

import React,{useState} from "react";

export const EditableCell = ({
                                 value: initialValue,row: Row,column: {id,editable,state},isEditing,}) => {
    // We need to keep and update the state of the cell normally
    const [value,setValue] = React.useState(initialValue);
    const {index} = Row;

    const onChange = e => {
        setValue(e.target.value);
    };

    // We'll only update the external data when the input is blurred
    const onBlur = () => {
        updateItem(index,id,value);
    }

    // If the initialValue is changed external,sync it up with our state
    React.useEffect(() => {
        setValue(initialValue)
    },[initialValue]);

    let retobj = null;
    if (isEditing && editable) {
        switch (id) {
            default:
                retobj = <input className="input-edit w-100" value={value} onChange={onChange} onBlur={onBlur}/>;
                break;
        }
    } else {
               retobj = value
    } 
    return retobj;
}

在我的专栏中,我有

{
 accessor: '[editButton]',Cell: (cellObj) => <button onClick={() => handleClickEditRow(cellObj.row.index)>Edit</button>
}

我现在如何从“EditableCell”编辑“isEditing”属性

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)