I am developing a plugin with altassian connect add-on. I tried to place a menu in Setting-->Jira setting --> System. While click on the menu it is opening in new window. Sample code below:
"modules": {
"webSections": [
{
"key": "system-admin-web-section",
"location": "admin_system_menu",
"weight": 50,
"name": {
"value": "Menu 1"
}
}
],
"webItems": [
{
"location": "admin_system_menu/system-admin-web-section",
"weight": 200,
"url": "/configuration",
"context": "addon",
"target": {
"type": "page"
},
"name": {
"value": "Sample menu1"
},
"key": "system-admin-web-item1"
},
{
"location": "admin_system_menu/system-admin-web-section",
"weight": 200,
"url": "/list-mapping",
"context": "addon",
"target": {
"type": "page"
},
"name": {
"value": "Sample menu2"
},
"key": "system-admin-web-item2"
}
]
}
While went through the document, I understand that the web items will load as new page or as a dialog. But in my requirement while click on the menu it should load on right window. for example: Setting-->Jira setting --> System --> Project roles (menu) it will load in right side window. I need the same behavior to implement.