Hi,
I haven’t been able to add the multiline field as a trigger yet, but you can add this to your Custom JS:
var currMultiVal = getFieldValue("YOUR_FIELDINTERNAL_NAME");
setInterval(function(){
var val = getFieldValue("YOUR_FIELDINTERNAL_NAME");
if(currMultiVal !== val){
currMultiVal = val;
alert("Changed!");
if(val.indexOf("Magic option value") > -1){
alert("Contains the magic option value!");
}
}
},1000);
Where I have added the alerts you can insert your code, call a function or trigger a rule.
Alexander