Send key ESC in TableTools fnComplete
Send key ESC in TableTools fnComplete
jvcunha
Posts: 81Questions: 10Answers: 1
It's possible return on fnComplete to table, without press key ESC automatically ?
I try this code and not working:
fnComplete: function () {
$('myTable').focus();
$(document.activeElement).trigger({
type: 'keyup',
which: 27
});
}
This discussion has been closed.