I am trying to display rowdata in another form on clicking a button in a row in Fixed Data Table. i don't know how to do it.
handleClick: function(){
window.location.href='/add/app';
},
render() {
return (
<div className="listForm">
<Table
rowHeight={50}
rowsCount={this.state.data.length}
headerHeight={50}
width={1000}
height={500}>
<Column
header={<Cell>ID</Cell>}
cell={props => (<Cell {...props}>{this.state.data[props.rowIndex].id}</Cell>)}
fixed={true}
width={50}
/>
<Column
header={<Cell>Name</Cell>}
cell={props => (<Cell {...props}>{this.state.data[props.rowIndex].name}</Cell>)}
fixed={true}
width={140}
/>
<Column
header={<Cell>Tamil</Cell>}
cell={props => (<Cell {...props}>{this.state.data[props.rowIndex].mark1}</Cell>)}
fixed={true}
width={140}
/>
<Column
header={<Cell>Edit</Cell>}
width={100}
cell={props => (
<Cell><button type="button" className="editrow" onClick={this.handleClick}>Edit</button> </Cell>
)}
/>
</Table>
</div>
);
}
});
return ListForm;
});
In this form i have to display the row dataupdate student mark form