Changing shown projects in creation mask with behaviour

Sven Orbitz January 22, 2021

I'd like to limit the shown projects in the creation screen for users within a group.

 

Unfortunately it is not as easy, as setting the fieldOptions with a list of projects to show and i can't figure out how to do it. Converting the field to singleSelect doesn't work either, because the "converted" field just pops up right beside the true project field.

 

Any suggestions or examples?

Thank you very much upfront

1 answer

1 accepted

0 votes
Answer accepted
brbojorque
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 22, 2021

Hi @Sven Orbitz ,

I think you can update the permission scheme and exclude the said group to be able to Create tickets (best practice way). 

Last resort.

Behaviour won't be able to do it but javascript can!

var selectobject = document.getElementById("project-field");
for (var i=0; i<selectobject.length; i++) {
    if (selectobject.options[i].value == 'A')
        selectobject.remove(i);
}

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events