Hi Community :)
is it possible to configure the width of the toplevel bar?
Regarding the AUI docs this should be possible at all, but I don't see how.
Even on a 3440p screen the width of aui-toolbar2-primary is limited to around 600 pixels; therefore almost all buttons are shown under the "More" dropdown menu.
We'd like to have more buttons (mostly ScriptRunner fragments / web items) visible outside the "More" dropdown.
Thanks in advance,
Hauke
Similar to what's described here: https://confluence.atlassian.com/jirakb/add-more-workflow-transition-buttons-to-jira-issue-page-1064082957.html
You can also adjust the size of the main operations section in the opsbar by setting the configuration parameter 'ops.bar.group.size.opsbar-operations' to something other than 1 (the default)
You can even do that live with scriptrunner:
Run this ins the console and refresh an issue view page:
import com.atlassian.jira.component.ComponentAccessor
ComponentAccessor.applicationProperties.setString('ops.bar.group.size.opsbar-operations', '3')
If you want to remove a property just added with scriptrunner like the above, you need a different class:
import com.atlassian.core.ofbiz.util.OFBizPropertyUtils
OFBizPropertyUtils.getPropertySet('jira.properties', 1L).remove('ops.bar.group.size.opsbar-operations')
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.