[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: It's only 3 records

  • Thread starter Thread starter egarcia
  • Start date Start date
Status
Not open for further replies.
E

egarcia

Guest
Hello Greg, You can set the pageable.alwaysVisible property to false. You can set the property in the constructor in controller.public.js: constructor($scope, $injector, stateData) { super($scope, $injector); this.$model.options.pageable = { refresh: true, alwaysVisible: false }; } For the Data Grid view, you use this.$model to refer to the model of the grid. For a view created using the blank view template, you would use this.$components['grid0'] to refer to the grid. Related links: - demos.telerik.com/.../pager-visibility - docs.telerik.com/.../pageable.alwaysvisible I hope this helps, Edsel

Continue reading...
 
Status
Not open for further replies.
Back
Top