Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Add column on view in Structure

Andrej_Kapusta August 20, 2019

Hello.

I am working with Structure plugin v. 16.15.0 and trying to find way, how to add new column into view. I create by script new custom field, but need to automatically add this custom field on view, which ID I know. Trying to get it from documentation for Stucture, so far unsuccessfully.

Could you help me with som ehint or code example? Thank you.

2 answers

1 accepted

1 vote
Answer accepted
Ilya Turov
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 21, 2019

Their javadoc looks pretty good too, I'm not sure if it's the best solution, but works for me:

import com.onresolve.scriptrunner.runner.customisers.PluginModule
import com.onresolve.scriptrunner.runner.customisers.WithPlugin
import com.almworks.jira.structure.api.view.StructureViewManager
import com.almworks.jira.structure.api.permissions.PermissionLevel
import com.almworks.jira.structure.api.view.ViewSpecification.Builder

@WithPlugin("com.almworks.jira.structure")
@PluginModule
StructureViewManager svm
/*find your view by either id or name if you want
using {it.name == "your name"} instead*/
def view = svm.getViews(PermissionLevel.ADMIN).find {it.id == 25}
def spec = view.specification
/*replace 12345 with your field id*/
def newSpec = new Builder(spec)
.addFieldColumn("customfield_12345")
.build()
view.setSpecification(newSpec)
view.saveChanges()
Andrej_Kapusta August 21, 2019

Thank you for this example it works really good! I struggle with Structure plugin, so it was my lack of knowledge. Thank you for help once again.

0 votes
Ilya Turov
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 20, 2019

not sure about version 16.15.0, but believe documentation has it covered pretty greately:

https://wiki.almworks.com/display/structure/Customizing+Columns

Andrej_Kapusta August 21, 2019

Documentation is well made, but I need this functionality make by script, where I have tried to use mentioned documentation of Java API, but haven't found solution.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events