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.
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()
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
not sure about version 16.15.0, but believe documentation has it covered pretty greately:
https://wiki.almworks.com/display/structure/Customizing+Columns
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.