hi
you could have two options:
1.- use an Async Command instead of the Remove Row Button to call an action that deletes the row. In that action you could update as well the summary.
2.- Add an Script Block that captures the “delete” event and react accordingly. To capture that event:
var table = CAF.model('#{activePageBean.clientIds['myTable']}');
table.addRowChangeListener(function(tableId, rowId, eventType)
{
if (eventType == "remove")
{
// do something
}
}
);
hope this helps
Javier
#webMethods#webMethods-BPMS#MWS-CAF-Task-Engine