I am using UIkit Pagination and it didn't work. I know I have UIkit installed in my environment as I'm using the UIkit Modal, uploadDrop, uploadSelect, etc and these are running perfectly.
Here is my HTML for pagination buttons:
<ul id = "PaginateDsData" class="uk-pagination"></ul>
and this is the Javascript:
var pagination = UIkit.pagination($('#PaginateDsData'), {
items:100,
itemsOnPage:10,
displayedPages:10
/* options */ });
I've been reading the documentation of this dynamic uikit pagination currently at https://getuikit.com/v2/docs/pagination-js.html but I am still unable to run it successfully.