I am using jquery datatable plugin on my web application, with inline editing functionality. The default editing setup
$('#example').dataTable().makeeditable({
null //default editing
});
only triggers the edit event once Enter button is pressed. Is there a way this can be changed to a 'click outside the box' event similar to how the select works
$('#example').dataTable().makeeditable({
indicator: 'Saving...',
tooltip: 'Click to select option',
loadtext: 'loading...',
type: 'select',
onblur: 'submit',
data: "{'A; A':'B; B'}"
});