MAPREDUCE-6782. JHS task page search based on each individual column not working (Ajith S via Varun Saxena)
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/026b39ad Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/026b39ad Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/026b39ad Branch: refs/heads/YARN-4752 Commit: 026b39ad9d9336b1efdd8e2ffb9a508cb0db6259 Parents: f38a6d0 Author: Varun Saxena <[email protected]> Authored: Tue Nov 8 14:57:56 2016 +0530 Committer: Varun Saxena <[email protected]> Committed: Tue Nov 8 14:57:56 2016 +0530 ---------------------------------------------------------------------- .../org/apache/hadoop/mapreduce/v2/hs/webapp/HsTasksPage.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/026b39ad/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/main/java/org/apache/hadoop/mapreduce/v2/hs/webapp/HsTasksPage.java ---------------------------------------------------------------------- diff --git a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/main/java/org/apache/hadoop/mapreduce/v2/hs/webapp/HsTasksPage.java b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/main/java/org/apache/hadoop/mapreduce/v2/hs/webapp/HsTasksPage.java index 42507d0..3c3386e 100644 --- a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/main/java/org/apache/hadoop/mapreduce/v2/hs/webapp/HsTasksPage.java +++ b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/main/java/org/apache/hadoop/mapreduce/v2/hs/webapp/HsTasksPage.java @@ -96,7 +96,8 @@ public class HsTasksPage extends HsView { private String jobsPostTableInit() { return "var asInitVals = new Array();\n" + "$('tfoot input').keyup( function () \n{"+ - " tasksDataTable.fnFilter( this.value, $('tfoot input').index(this) );\n"+ + " $('.dt-tasks').dataTable().fnFilter("+ + " this.value, $('tfoot input').index(this) );\n"+ "} );\n"+ "$('tfoot input').each( function (i) {\n"+ " asInitVals[i] = this.value;\n"+ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
