I have a problem when trying to implement the configuration file of my plugin.
I started my program with the already existing SideBar Plugin, but I encountered a problem when I added a List<String>
as a variable to the class Action
: private List<String> projects;
How can I fill such a list within the jelly file?
我试图这样做:
<f:entry>
<f:optionalBlock title="Project to be considered :">
<f:repeatable var="project" items="${link.projects}" name="projects" add="Add a project">
<f:entry title="Project 1 :">
</f:entry>
</f:repeatable>
</f:optionalBlock>
</f:entry>
I added these lines in the links.jelly file, but it doesn t work.
如果任何人知道如何做到这一点,那将是巨大的。
谢谢。