Hi , I have two custom fields one is a select list and the other is multi line text field. I need to make the multi line text field mandatory when the there is a change to the select list.
I added the following code using the behavior plugin at the select list field - It didnt work - Please help me out.
import org.ofbiz.core.entity.GenericValue import com.atlassian.core.ofbiz.util.OFBizPropertyUtils import com.atlassian.jira.ComponentManager import com.atlassian.jira.issue.CustomFieldManager def componentManager = ComponentManager.instance FormField formComponent = getFieldByID(FieldChanged) FormField psitre = getFieldById("customfiled_18292") psitre.setRequired(true)
HI Saravanan,
The code below shows how to make a multi line text field mandatory when a select list has had an option selected using behaviours.
As the value will always change to another non value this will ensure that the multi line text field stays mandatory when the select list value field is updated on the create or edit screens.
// Get a pointer to both my fields def demoSelect = getFieldByName("Demo Select List") def demoMultiTxt = getFieldByName("Demo Multi Line Text Field") // Get the Value of the Select List Field def selectedVal = demoSelect.getValue() if (selectedVal != null){ demoMultiTxt.setRequired(true) }
Kristian
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Kristian, Thanks for your help. The above hook fires even before the select list value is changed - can we change it in such a way only it fires when there is a change to the field value?? thanks Saran
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.