Is it possible to paginate and search a standalone collection editor list?

Is it possible to paginate and search a standalone collection editor list?

bank1991bank1991 Posts: 8Questions: 3Answers: 0
edited October 2021 in Editor

Is it possible to paginate and search a standalone collection editor list?

$.ajax({
url: '/Vendors/Profile',
dataType: 'json',
success: function (json) {
for (var i = 0, ien = json.data.length; i < ien; i++) {
createPanel(json.data[i]);
}
}
});
:

This question has an accepted answers - jump to answer

Answers

  • colincolin Posts: 15,112Questions: 1Answers: 2,583

    I see you're asking about Editor in your example, but our accounts aren't showing that you have a license - it just reports that your trial expired a couple of years ago. Is the license registered to another email address? Please can let us know so we can update our records and provide support.

    Thanks,

    Colin

  • bank1991bank1991 Posts: 8Questions: 3Answers: 0

    Yes it is registered to stephen.amevedzi@gmail.com i am working on a project for him

  • allanallan Posts: 61,446Questions: 1Answers: 10,054 Site admin
    Answer ✓

    Hi,

    Thanks for the clarification.

    If you are using standalone, then it would be up to you to implement any paging / filtering to apply the display, since Editor is just a layer on top of that.

    However, I wonder if DataTables with a card view, as discussed here might suit your needs? That way you can let DataTables do the sorting, paging and filtering for you, while you can define a layout (which is I presume why you were looking at the standalone editor?).

    Thanks,
    Allan

Sign In or Register to comment.