Paginated navigation MIGX pdoPage and getImageList

Hi. I use the following call

                                             <div id="pdopage">
  [[!+page.nav]]
  <div class="rows row">
[[!pdoPage?
  &element=`getImageList`
  &limit=`20`
  &tvname=`resourcealbum`
  &tpl=`regiment`
   &ajaxMode=`button`
  &docid=`[[*id]]`
]]
  </div>
</div>

when clicking on “upload more”, noimage is displayed

chunk

<div class="col-lg-4">
    <div class="team-one__single">
        <div class="team-one__image team-one__image1" >
            <a href="[[+image]]" data-fancybox="gallery" title="[[+title]]"> <img src="[[+image:PhpThumbOn=`w=319&h=400&zc=1`]]" alt="[[+title]]"></a>
        </div><!-- /.team-one__image -->
        <div class="team-one__content">
            <h3>[[+title]]</h3>
            <p></p>
        </div><!-- /.team-one__content -->
    </div><!-- /.team-one__single -->
</div><!-- /.col-lg-4 -->

page

When you test it without &ajaxMode, does it then work correctly or are the images on page 2 still missing?

it is displayed correctly without &ajaxMode

Somehow the property processTVs doesn’t seem to have the correct value when the snippet is executed by the pdoTools connector. Try setting it explicitly:

[[!pdoPage?
  ...
  &processTVs=`1`
]]

thank you. as always, you are top. ++

Hi.Tell me, how do I make a list of IDs?

&docid=`534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560`

This design does not work

 <div class="row">
                                             <div id="pdopage">
  [[!+page.nav]]
  <div class="rows row">
[[!pdoPage?
  &element=`getImageList`
  &limit=`20`
  &tvname=`resourcealbum`
  &tpl=`regiment`
   &ajaxMode=`button`
   &processTVs=`1`
  &docid=`534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560`
]]
  </div>
</div>
                </div><!-- /.row -->

You can’t just add a list of IDs to the &docid property.
This property expects a single number!

yes, I know. I’ve already corrected it