Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Confluence blueprint create dynamic table or list

Deleted user August 2, 2015

Hi

I am developing a confluence blue print module and in the Blueprint xml file I have declared a list variable as suggested in this tutorial: https://confluence.atlassian.com/display/DOC/Confluence+Storage+Format#ConfluenceStorageFormat-Resourceidentifiers

 

<at:declarations>
  <at:list at:name="MyList">
  </at:list>
</at:declarations>
 
<p>A selection list: <at:var at:name="MyList" /></p>

And in the Context provider class I have initiated the List as follows:

 

List list = new ArrayList();
list.add("User 1");
list.add("User 2");
list.add("User 3");

blueprintContext.put("MyList", list);

But when I the page appears in edit mode it shows:

<p>A selection list: [User 1, User 2, User 3] </p>

Same as when it renders the output after Save. 

My question:

1. How to show as bulleted list:

  • User 1
  • User 2
  • User 3

2. How can I loop through the list and create a dynamic table?

Appreciate all your help on this. Thanks.

1 answer

0 votes
Thomas Strauss February 14, 2017

hi,

I'm facing the same problem, can you please tell me how you've solved this issue? I'd really appreciate it!

Thanks,

Thomas

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events