I added the missing form inputs as follows:
if ($('.editable').length > 0) {
$('.action-select').each(function(i, el) {
var item_id = $(el).val();
$('form').append("<input type='hidden' name='form-" + i + "-id'
value='" + item_id + "'/>");
});
}
It seems a bug