Skip to content Skip to sidebar Skip to footer

Knockout: Table Paging

I tried paging under my Model. I could correctly get Arrow to move depending on how many Records I posess. But data is not refelcted/decreased/increased depending on Max rows to sh

Solution 1:

You just need to update your view from...

<tbody data-bind="foreach: items " >

to

<tbody data-bind="foreach: paginated " >

Post a Comment for "Knockout: Table Paging"