Trying to simplify form entry a little by auto submitting a simple radio button bubble form once a selection is made. All the documented events (onBlur, OnReturn, onEsc) work fine but require several actions to submit and close the form. Fiddled around with the normal DOM events like mouseup but they won't fire. Editor documentation states "Please note that unlike DataTables, Editor does not emit DOM events" so I'm assuming that's a dead end? Any ideas or am I missing something?
Thanks!
$("#inspections2").on("click", "tbody td", function (e) {
//console.log( table.row( this ));
editor2.bubble(this,["inspect"], {
buttons: false,
onBlur: "submit",
title: table2.cell( this ).data()
});
});
$(".DTE_Field_Name_inspect").mouseup(function(){
alert("Button Up");
});