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...
Continue reading...