@togotech wrote:
Hi All,
I am trying to remove an item row from grid. Follwing is my code:
removeBill(bill: any){
let index = this.bills.indexOf(bill);
if (index > -1){
this.bills.splice(index, 1);
}
}I am getting error as indexOf is not a function... Not sure what I am missing. (HTML has the same function mention). Kindly help
Posts: 1
Participants: 1