Я использую самоактивный рельс, и мой код имеет следующую структуру. У меня возникают проблемы с вызовом onClick с помощью кнопки, созданной внутри функции.
class AdminRevenueShareModelsSearch extends AlacrityTable {
constructor(props) {
super(props);
this.handleDelete = this.handleDelete.bind(this);
this.columns = [
{ path: "id", title: "ID", sort: true, isKey: true},
{ path: "name", title: "Name" },
{ path: "description", title: "Description"},
{ path: "", title: "Actions" , dataFormat: this.tableActions }
];
}
handleDelete(){
console.log("assasa");
}
tableActions(cell, row, extra, index) {
return (
<Button
bsStyle="default"
onClick={this.handleDelete}
title="Delete">
<Glyphicon title="Delete" glyph="trash" />
</Button>
);
}
render() {
return (
<div>
<BootstrapTable data={ this.props.data }
remote={ true }
striped={true}
hover={true}
height={ 'auto' }
pagination={ true }
fetchInfo={ { dataTotalSize: this.props.totalDataSize } }
options={ {
sizePerPage: this.props.sizePerPage,
withFirstAndLast: false,
sizePerPageList: [ 5, 10, 20 ],
page: this.props.currentPage,
onPageChange: this.props.onPageChange,
onSortChange: this.props.onSortChange,
onFilterChange: this.props.onFilterChange,
noDataText: this.noDataText()
} }>
{this.renderTableColumns()}
</BootstrapTable>
</div>
);
}
Ранее я использовал onClick={this.handleDelete()}
, но получил ошибку "this.handleDelete не является функцией".