微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如何解决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 举报,一经查实,本站将立刻删除。