Version 8.3
Hi all,
I have a Listgrid with:
canRemoveRecords: true
as an attibute.
My question is, Is possible to execute more actions when the user clicks that icon? Could I call a function? after or before the row is eliminated?
Thanks in advance.
Hi all,
I have a Listgrid with:
canRemoveRecords: true
as an attibute.
My question is, Is possible to execute more actions when the user clicks that icon? Could I call a function? after or before the row is eliminated?
Code:
isc.ListGrid.create({
ID: 'products',
height: 450,
width: 500,
alternateRecordStyles: true,
canRemoveRecords: true,
fields: [
........
]
});
Thanks in advance.
Comment