Skip to content

Commit

Permalink
[SPARK-21809] : Doing search on keyup instead of Enter
Browse files Browse the repository at this point in the history
  • Loading branch information
pgandhi committed Sep 17, 2018
1 parent af83b6e commit 07c1f19
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -873,9 +873,7 @@ $(document).ready(function () {
var taskTableSelector = $(taskTable).DataTable(task_conf);
$('#active-tasks-table_filter input').unbind();
$('#active-tasks-table_filter input').bind('keyup', function(e) {
if(e.keyCode == 13) {
taskTableSelector.search( this.value ).draw();
}
taskTableSelector.search( this.value ).draw();
});

var optionalColumns = [11, 12, 13, 14, 15, 16, 17];
Expand Down

0 comments on commit 07c1f19

Please sign in to comment.