You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I am looking for some samples which able to:
Create a new tab on top of the navigate
on this new page, will have same form allow user to input data
After click sumbit, will have some event happen.
Not sure if this available with scriptrunner, I know we can create a new button on tha navigation area. Please help.
Thanks
Broadly, I know most of it is possible, as one of my squad did it a while ago (specifically to store project-level data for doing calculations in scripted fields later). No idea how, as I've not tried it.
But that was a very specific case, and this use-case is too fuzzy to be able to say if that might work for them.
I use scriptrunner heavily but the way the user outlined above, this seems more like typical plugin territory.
It does to me too, but I think we need more detail on the use-case. I'd class this as a "definite maybe" at the moment ;-)
Take a look at the documentation on Customising the UI using ScriptRunner at https://scriptrunner.adaptavist.com/latest/jira/CustomisingUI.html. Take special note of the documentation on wiring up a dialog, including the notes about using javascript to add complex interactions.
To create a form that takes input, you'll most likely need to configure a Scripted REST Endpoint or two to display the form and take the POST from the form.
While this technically doesn't require developing a full blown p2 plugin, the rough use case you've outlined sounds like it will be complex enough that you'd need many of the same skills. At a minimum, you would need a custom web item, a couple of REST endpoints (one to return your form's HTML, another to receive the POST request), and some javascript to connect the two in just the way you want. At the very least, you'd need a little web development expertise and a taste for adventure.