Is it possible to use Editor and Scroller together?

Is it possible to use Editor and Scroller together?

aber231aber231 Posts: 15Questions: 7Answers: 0

Is it possible to use Editor and Scroller (scroller is the extension that allows for very large datasets) together at the same time? Editor wants a json dataset but Scroller wants a JavaScript array dataset, so not sure which one to use (presumably a JavaScript array due to it smaller size with the enormous dataset).

If this is possible, are there any examples available where both Editor and Scroller are used together? Thanks

This question has an accepted answers - jump to answer

Answers

  • aber231aber231 Posts: 15Questions: 7Answers: 0

    And if the Scroller and Editor extensions can't work together, I would be interested in recommendation for how to handle a requirement that includes both 1) a large dataset and 2) ability to edit the rows (add, edit, search, column sort, etc.) Thanks!

  • aber231aber231 Posts: 15Questions: 7Answers: 0

    One more thing: we were hoping to be able to use the Excel format layout (use keyboard to move around and edit cells).

  • kthorngrenkthorngren Posts: 20,309Questions: 26Answers: 4,769
    Answer ✓

    According to the Compatibility matrix Editor and Scroller are compatible.

    Editor wants a json dataset but Scroller wants a JavaScript array dataset,

    Scroller is independent of the data structure (objects or arrays) that your row data uses. The examples might use arrays but you can use objects.

    Presumably you are using Server Side Processing if you have a large dataset? Scroller will work with either. I don't see any examples of Editor with Scroller. We can probably put one together if needed.

    use keyboard to move around and edit cells).

    According to the Compatibility matrix Scroller is compatible with KeyTable. which will also work with Editor. Here is an example of Scroller and KeyTable. Here is a KeyTable and Editor example.

    Kevin

Sign In or Register to comment.