pagination with macro

gaddam kumar April 23, 2012

HI,

How to add pagination feature to Macro.

Regards

Sandeep.

3 answers

0 votes
Vijay Krishna B
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 11, 2013

Hi Kumar,

I want to do pagination for the comments for this purpose which macro i have to modify.

Regards,

Vijay

0 votes
gaddam kumar May 30, 2012

HI,

At first get the list that neeed to be displayed.

Then add the list to PaginationSupport as given above.

add'PaginationSupport' to map.

and display them using vm file.

Its clearly given above.

Kiron
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 30, 2012

I got that part..but how will I get the subsequent pages and where does the hyper link go?

like First <<previous Next >> Last

Like Karina Green likes this
gaddam kumar May 31, 2012

//paginationSupport.setStartIndex(1);

here we need to send the which set of the list need to be displayed.

And for First <<previous Next >> Last i used jquery pagination. http://tympanus.net/jPaginate/

0 votes
gaddam kumar April 23, 2012

I had solution for this.

=========In Macro class add this.=========

{code}

PaginationSupport paginationSupport = getPaginationSupport();

paginationSupport.setItems(mylist);

paginationSupport.setPageSize(10);

paginationSupport.setTotal(100);

paginationSupport.setStartIndex(1);

// parameters to pass for pagination support

map.put("paginationSupport", paginationSupport);

{code}

========in vm file========

#foreach( $user in $paginationSupport.page.iterator())

.....

#end

Kiron
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 30, 2012

Hi Kumar,

Can you explain little more on as to how you implemented pagination in confluence macro? I am trying to implement the same in Content By Label macro.

Thanks!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events