我有一个带字段的表单。当我提交此表单时,我使用字段值
完成我的引导程序表我想为每一行调用此表单,并在表单上获取值来编辑它。
我将表单称为空,没有值。如何通过引用调用带有值的表单?
<BootstrapTable data={this.props.items} cellEdit={this.cellEdit}>
<TableHeaderColumn dataField='reference' dataFormat={this.editFormatter.bind(this)}>Edit</TableHeaderColumn</BootstrapTable>
editFormatter(cell, row) {
return (
<button onClick={() => this.editFormatterClick = (reference: string) => { }}>{cell}</button>
);
}
editFormatterClick = (reference:string) => {
this.props.onDocumentSelected(reference)
}
onDocumentSelected: (documentReference: string) => void
此属性onDocumentSelected调用表单。如何使用列表中的值来调用此表单? 谢谢