Created
December 15, 2016 21:32
-
-
Save OzanKurt/807d4fc50a720734b3d9f7f7a0e5671a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"initComplete": function () { | |
var api = this.api(); | |
$('.dataTables_filter:first input').off('.DT').on('keyup.DT', function (e) { | |
if (e.keyCode == 13) { | |
api.search(this.value).draw(); | |
} | |
}); | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment