Radio Button update in SR Behaviors

I cannot get any behaviors to trigger from the “Issue View” when updating customer field of type radio button. Any help appreciated.

Scope is a single project, Issue type of Task

This is how you can get id and value of a field that is updated (even radio button)
const changedField = getChangeField();
console.log(“changedField”+changedField)
//get id
const changedFieldId = changedField.getId();
console.log(“changedFieldId”+changedFieldId)
//get value
const selectedOption = changedField.getValue()?.value;
console.log(“selectedOption”+selectedOption)

I tried adding those to my Behavior in Cloud, but I’m still not getting anything in the Behavior Logs that shows this is running when I select “Issue View” and “On Change”, and update the field. I only get logs when I select Create view, and the field is not populated at that time so it errors for null or undefined values.

So, what I assume you need to apply both on Create and Edit Screen correct? Then I would suggest to pick both Events (on Load, on Change) and both Views (Issue View, Create View ).

If you pick all options and you still do not see any logging at all then for some reason the Behaviour is not running and needs more investigation. From my personal experience, it can happen in cases where more that one addon that modifies the UI of the page is enabled for the Project.

I do not want the behavior on the create screen. The field is not shown on that screen. It is only available to the user after creation.

We don’t have any other UI modifying apps in standard projects.

According to what you have shared I would expect this to work, so I believe a support ticket could be raised for further investigation.

Just a small tip, I would move this logger.info(“Debugging: Behaviour is running”) to the top and also print it in the console log. As I can see you are logging in console, I guess you might already have checked console logs too. If you haven’t, please check your Browser’s console logs while you are triggering the change.