var elements = ;
for (var i = 0; i < context.fetchAllPayeeService.response.body.queryResult.length; i++) {
var element = {
name: context.fetchAllPayeeService.response.body.queryResult[i].name,
bankName: context.fetchAllPayeeService.response.body.queryResult[i].bankName,
accountNumber: context.fetchAllPayeeService.response.body.queryResult[i].accountNumber,
status: context.fetchAllPayeeService.response.body.queryResult[i].status,
updatePayload: “update_” + i,
deletePayload: “delete_” + i
};
elements.push(element);
}
No i want 2 button in each row one for update another for delete like how in website have not outside the table and when we click on delete button that row should be deleted and for update it will give option to update lets only i want delete option in each row is it possible to achive button
in table template beacuse its showing [object] instead of delete .
Hi Kore team, how to handle response from table, after click on a button/data present in the table. It is going to next node without waiting for table-button click. unlike in button template, Can you Please guide on this usecase !!