Forums » Development »
Ability to show custom field at ADD FILTER that without checking to FOR ALL PROJECTS?
Added by Jacky Ho about 9 years ago
Hi,
Ability to show custom field at ADD FILTER that without checking to FOR ALL PROJECTS?
As my attached picture. I would like to show custom field to add filter dropdown list that without checked to check box named "for all projects".
Is it possible to do that?
Thanks
| addfilter.png (37.5 KB) addfilter.png |
Replies (1)
RE: Ability to show custom field at ADD FILTER that without checking to FOR ALL PROJECTS?
-
Added by Jacky Ho about 9 years ago
Jacky Ho wrote:
Hi,
Ability to show custom field at ADD FILTER that without checking to FOR ALL PROJECTS?
As my attached picture. I would like to show custom field to add filter dropdown list that without checked to check box named "for all projects".
Is it possible to do that?
Thanks
I customized it by removing: /redmineroot/app/models/issue_query.rb
from:
issue_custom_fields = IssueCustomField.where(:is_filter => true, :is_for_all => true).all
to:
issue_custom_fields = IssueCustomField.where(:is_filter => true).all