Project

General

Profile

Ability to show custom field at ADD FILTER that without checking to FOR ALL PROJECTS?

Added by Jacky Ho over 7 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


Replies (1)

RE: Ability to show custom field at ADD FILTER that without checking to FOR ALL PROJECTS? - Added by Jacky Ho over 7 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

    (1-1/1)