You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by zj...@apache.org on 2014/12/22 04:28:04 UTC

tez git commit: TEZ-1875. dropdown filters do not work on vertices and task attempts page (Prakash Ramachandran via zjffdu)

Repository: tez
Updated Branches:
  refs/heads/master 6276929d3 -> 793fd72c8


TEZ-1875. dropdown filters do not work on vertices and task attempts page (Prakash Ramachandran via zjffdu)


Project: http://git-wip-us.apache.org/repos/asf/tez/repo
Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/793fd72c
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/793fd72c
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/793fd72c

Branch: refs/heads/master
Commit: 793fd72c8f799123841311c9c5357c8ddc04f9c1
Parents: 6276929
Author: Jeff Zhang <zj...@apache.org>
Authored: Mon Dec 22 11:26:09 2014 +0800
Committer: Jeff Zhang <zj...@apache.org>
Committed: Mon Dec 22 11:26:09 2014 +0800

----------------------------------------------------------------------
 CHANGES.txt                                                   | 1 +
 .../src/main/webapp/app/scripts/components/extended-table.js  | 7 ++++---
 2 files changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/793fd72c/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index b0b13de..743a5b9 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -6,6 +6,7 @@ Release 0.6.0: Unreleased
 INCOMPATIBLE CHANGES
 
 ALL CHANGES:
+  TEZ-1875. dropdown filters do not work on vertices and task attempts page.
   TEZ-1873. TestTezAMRMClient fails due to host resolution timing out.
   TEZ-1881. Setup initial test-patch script for TEZ-1313.
   TEZ-1864. move initialization code dependent on config params to App.ready.

http://git-wip-us.apache.org/repos/asf/tez/blob/793fd72c/tez-ui/src/main/webapp/app/scripts/components/extended-table.js
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/scripts/components/extended-table.js b/tez-ui/src/main/webapp/app/scripts/components/extended-table.js
index de2e483..e16e03c 100644
--- a/tez-ui/src/main/webapp/app/scripts/components/extended-table.js
+++ b/tez-ui/src/main/webapp/app/scripts/components/extended-table.js
@@ -106,13 +106,14 @@ App.ExTable.FilterCell = Ember.View.extend(Ember.AddeparMixins.StyleBindingsMixi
             content: this.get('content.dropdownValues'),
             optionValuePath: 'content.id',
             optionLabelPath: 'content.label',
-            classNames: 'inline-display'
+            classNames: 'inline-display',
+            filterValueBinding: '_parentView.content.columnFilterValue'
           });
         break;
         case 'textbox':
           inputFieldView = App.ExTable.FilterTextField.create({
-            filterValueBinding: 'content.columnFilterValue',
-            classNames: 'inline-display'
+            classNames: 'inline-display',
+            filterValueBinding: '_parentView.content.columnFilterValue'
           });
         break;
         default: