thanks for your quick response. I tried some stuff with ajax requests.
I tried to load the whole jira page and to cut the part I need.
But now I’m facing the problem that my webpanel is not updated, meaning getContextMap(…) of my plugin is not called, when uising the ajax "load(URL-To-Jira-Issue-Page)’?
I developed a small plugin to show up some information at the right context of an issue.
The plugin has a webpanel and a webwork component. The webwork component handles the “POST”-Actions sent from the webpanel component. This causes a full page reload, which then updates my webpanel component depending on the previous action, handled by the webwork component.
Now I’m trying to perform the whole process cycle (“post”-action -> update webpanel) only within the scope of the webpanel div-container instead reloading the whole page.
So my idea was to get the new state of the webpanel div-container via an ajax request.
But maybe there is a much more simple way to do that
I will write a velocity file with some javascript code, which updates itself and which does not need to be updated from external calls. Maybe this is a better way to do it.