create Dynamic content on Repeaters

i hv seen the video to create a Dynamic Category Page on Gallery, but how can i create Dynamic content on Repeaters format like below?

Hi,
Repeaters are connectable just like galleries.
Check out this article if you’re still having trouble:

Hi, it works now thanks so much.
I hv another issue here. How can i divid pages of this dynamic table in repeater.
For example. I hv a database with 100 title. I dont wanna show 100 dynamic table in one page, i wanna divide to 25 each page.

Set the number of items to show in the dataset. The default is 20. This will limit the page to show only the 20 or 25 first items in the dynamic table.

To get to the next page of data, just call the dataset .next function 20 (or 25) times. The repeated table will be updated.

We are working on a better solution, will have it soon.

Thanks Yoav,

U mentioned about "To get to the next page of data, just call the dataset .next function 20 (or 25) times. The repeated table will be updated. "

So how can i call the dataset .next function 20 (or 25) times. Is it about some coding? I hv less knowledge about codinge will be updated.

Hi,

Yes, calling .next requires some coding.
See the documentation for Loops here

Hi. You can also put buttons on your page and connect them to the dataset, linking them to either “next page” or “previous page”. This way, your repeater shows the same number of items each time while your visitors can navigate through all the items in your collection.

Thx SharonD, ur suggestion is a lot easier. I will try.

But how can i create the button of page 1,2,3,4,5,6,7,9…so on.

Hi,
Creating pagination with specific buttons for every page is possible.
I previously wrote an example code especially for this feature.
See this thread.

Can I use a repeater only in a dynamic page or I can use in a page connected to a dataset ?

Hi Claudia,

You can user a repeater on any page that has at least one dataset.

Hi,

How can I filter my database by _owner ID and display it into the repeater?

Thank you,
Geo

Hi Geo,

Add a dataset > connect it to a repeater > add a filter function that finds the matching _ownerId .
http://www.wix.com/code/reference/wix-data.WixDataQuery.html#eq

Hi Ido,

Good day!
I have some question.

wixData.query("myCollection")
  .eq("status", "active")
  .find()
  .then( (results) => {
    $w('#repeater1').data = results.items;
  } )
  .catch((err) => {
    console.log(err);
    });

in the line

.eq(“status”, “active”)
the status is where I can place the _owner?
and what is that active?

I’m bit confuse of that active guy!
Thank you,
Geo

I also have the same question:

How can I filter my database by _owner ID and display it into the repeater?

Hi Geo,

eq() takes in two arguments: the first is the table column you are checking. So in that example the collection “myCollection” has a column called “status”. The second argument is the value you are comparing against. The code is basically saying “return every item in the collection, where ‘status’ is equal to ‘active’”. Please take a look at the documentation for more information https://www.wix.com/code/reference/wix-data.WixDataQuery.html#eq

Just a quick heads up that soon we will release a new option for filtering by logged-in user (or by not logged-in user) via the Dataset Settings panel. Keep an eye out for it in the Product Updates forum .

Hello, I’m trying to use a repeater connected to a dynamic dataset to display testimonials to my home page. How do I go about making the items automatically update to the next set of three without using a button to manually switch to the next page?