Initially i am displaying empty grid with header names. on click of add button new empty row should be added with delete icon.I am able to dynamically add row ag-grid.First time if i delete row after adding, its getting deleted, but second time its giving me below error..
Second time, its giving me error.
Uncaught TypeError: Cannot read property 'data' of undefined
Method getting calling on adding row:-
createNewRowData() {
let newData = {
tableName: '',
schemaName: '',
columnName: '',
condition: ''
};
console.log('newDATA', newData);
this.setState({
newCount:this.state.newCount+1
})
}
onAddRow() {
let newItem = this.createNewRowData.bind(this);
let res = this.state.gridOptions.api.updateRowData({add: [newItem]});
}
method called on delete:-
methodFromParent(cell) {
const rowNode = this.state.gridOptions.api.getRowNode(cell.rowIndex);
this.state.gridOptions.api.updateRowData({remove: [rowNode.data]});
this.state.newCount--;
}
my Custom cell renderer for delete which appears for each row which i am using in my colDefs:-
export default class DeleteButtonRenderer extends Component {
constructor(props) {
super(props);
this.invokeParentMethod = this.invokeParentMethod.bind(this);
}
invokeParentMethod(e) {
this.props.context.componentParent.methodFromParent(this.props.node);
}
render() {
return (
<span>
<a
style={{ height: 20, lineHeight: 0.5 }}
onClick={this.invokeParentMethod}
>
<i className="far fa-trash-alt fa-2x" />
</a>
</span>
);
}
}