Announcement

Collapse
No announcement yet.

Changing the number of results displayed for an enitity

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Changing the number of results displayed for an enitity

    Hello. Is it possible to control the number of results displayed in the list view for a given entity? Currently it is 20, I'd like to make it 30. Thank you.

  • #2
    I know you can change it globally in the Administration > User Interface. It is the records per page.

    Comment


    • #3
      I did, in client/custom/src/views/<my-entity>

      Code:
      setup: function() {
              Dep.prototype.setup.call(this);
              this.collection.maxSize = 30;
      }

      Comment

      Working...
      X