Question

Conditional Custom Field

  • 7 June 2021
  • 5 replies
  • 829 views

Userlevel 5
Badge +10
  • Hero (Employee)
  • 117 replies

Is it possible to conditionally show a custom field based on Project Category?

 

If yes, how?

 

Thanks if anyone can help me out.


This topic has been closed for comments

5 replies

Userlevel 7
Badge +20

Hi @MR10 ,

The custom field can be made mandatory based on the value of another field in the same form. But, not sure if it is possible to show/hide a custom field based on the value of another field. would like to see options if it is possible.

Thanks,

Userlevel 5
Badge +9

Hi @MR10 

This may Helpful

https://docs.ifs.com/techdocs/Foundation1/040_administration/220_user_interface/020_custom_objects/040_custom_fields/020_create_custom_fields/default.htm

Regards
Shan

Userlevel 6
Badge +13

Hi @MR10,

Create a custom field, then use conditional formatting. 
 

 

Userlevel 4
Badge +7

One option is to change the logic of the custom field, or a second custom field based on the original, so that the shown value is suppressed depending on the value of Project Category.

Add something like below to the logic of the c/field:

--

    
    (Case 
when <proj_category> = 'ABC' then <value>
  else '***value suppressed***'
    end)

-

 

Userlevel 5
Badge +10

Feels like not possible in IEE, but I like the creativity!

Thanks for thinking along!