Changing the number of results displayed for an enitity

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vampirefrog
    Member
    • May 2017
    • 45

    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.
  • joy11
    Active Community Member
    • Jan 2017
    • 113

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

    Comment

    • vampirefrog
      Member
      • May 2017
      • 45

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

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

      Comment

      Working...