Hi,
Using Jira + Script runner (behaviour script), I set the value of "summary" field triggering a select field's (another field) change. I'm ok with this part.
I'm now trying to notify the value change on the summary field to start the search in knowledgebase (like when user typing with keyboard in the summary field"
this is my code in the behaviour script :
def demandeConcerne = getFieldById(getFieldChanged())
def demandeConcerneVal = demandeConcerne.getValue() as String
// SUMMARY EDiT
def summary=getFieldById("summary")
def summaryVal=summary.getValue() as String
summary.setFormValue(demandeConcerneVal)
//I tried : summary.notifyAll() but not working at all
If somebody has an idea i'll take it !! Thanks
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.