Skip to content

Commit 12b3c42

Browse files
authored
Merge pull request #16 from kcorkan/master
added tags to filters
2 parents c61bcb0 + 0a36ffb commit 12b3c42

File tree

4 files changed

+21
-12
lines changed

4 files changed

+21
-12
lines changed

deploy/App.txt

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<head>
44
<title>Custom Grid with Deep Export</title>
55
<!-- (c) 2015 Rally Software Development Corp. All Rights Reserved. -->
6-
<!-- Build Date: Tue Apr 18 2017 17:10:18 GMT-0600 (MDT) -->
6+
<!-- Build Date: Tue May 23 2017 15:16:51 GMT-0600 (MDT) -->
77

88
<script type="text/javascript">
9-
var APP_BUILD_DATE = "Tue Apr 18 2017 17:10:18 GMT-0600 (MDT)";
10-
var CHECKSUM = 33262946551;
9+
var APP_BUILD_DATE = "Tue May 23 2017 15:16:51 GMT-0600 (MDT)";
10+
var CHECKSUM = 33370645756;
1111
</script>
1212

1313
<script type="text/javascript" src="/apps/2.1/sdk.js"></script>
@@ -760,8 +760,9 @@ Ext.override(Rally.ui.inlinefilter.PropertyFieldComboBox, {
760760
* @cfg {String[]} whiteListFields
761761
* field names that should be included from the filter row field combobox
762762
*/
763-
defaultWhiteListFields: ['Milestones']
763+
defaultWhiteListFields: ['Milestones','Tags']
764764
});
765+
765766
(function () {
766767
var Ext = window.Ext4 || window.Ext;
767768

@@ -922,6 +923,10 @@ Ext.define("custom-grid-with-deep-export", {
922923
modelNames: this.modelNames,
923924
inlineFilterPanelConfig: {
924925
quickFilterPanelConfig: {
926+
whiteListFields: [
927+
'Tags',
928+
'Milestones'
929+
],
925930
defaultFields: [
926931
'ArtifactSearch',
927932
'Owner',
@@ -1117,12 +1122,12 @@ Ext.define("custom-grid-with-deep-export", {
11171122
}
11181123
];
11191124
},
1120-
1125+
11211126
_launchInfo: function() {
11221127
if ( this.about_dialog ) { this.about_dialog.destroy(); }
11231128
this.about_dialog = Ext.create('Rally.technicalservices.InfoLink',{});
11241129
},
1125-
1130+
11261131
isExternal: function(){
11271132
return typeof(this.getAppId()) == 'undefined';
11281133
},

deploy/Ugly.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
<head>
44
<title>Custom Grid with Deep Export</title>
55
<!-- (c) 2015 Rally Software Development Corp. All Rights Reserved. -->
6-
<!-- Build Date: Tue Apr 18 2017 17:10:19 GMT-0600 (MDT) -->
6+
<!-- Build Date: Tue May 23 2017 15:16:51 GMT-0600 (MDT) -->
77

88
<script type="text/javascript">
9-
var APP_BUILD_DATE = "Tue Apr 18 2017 17:10:19 GMT-0600 (MDT)";
9+
var APP_BUILD_DATE = "Tue May 23 2017 15:16:51 GMT-0600 (MDT)";
1010
var CHECKSUM = [%= checksum %];
1111
</script>
1212

src/javascript/app.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ Ext.define("custom-grid-with-deep-export", {
8282
modelNames: this.modelNames,
8383
inlineFilterPanelConfig: {
8484
quickFilterPanelConfig: {
85+
whiteListFields: [
86+
'Tags',
87+
'Milestones'
88+
],
8589
defaultFields: [
8690
'ArtifactSearch',
8791
'Owner',
@@ -277,12 +281,12 @@ Ext.define("custom-grid-with-deep-export", {
277281
}
278282
];
279283
},
280-
284+
281285
_launchInfo: function() {
282286
if ( this.about_dialog ) { this.about_dialog.destroy(); }
283287
this.about_dialog = Ext.create('Rally.technicalservices.InfoLink',{});
284288
},
285-
289+
286290
isExternal: function(){
287291
return typeof(this.getAppId()) == 'undefined';
288292
},

src/javascript/utils/overrides.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ Ext.override(Rally.ui.inlinefilter.PropertyFieldComboBox, {
2121
* @cfg {String[]} whiteListFields
2222
* field names that should be included from the filter row field combobox
2323
*/
24-
defaultWhiteListFields: ['Milestones']
25-
});
24+
defaultWhiteListFields: ['Milestones','Tags']
25+
});

0 commit comments

Comments
 (0)