As the others said, you need to assign the pageSize property. The same if you need to re-assign the data source:
var dataSource = new kendo.data.DataSource({
data: gridData,
pageSize: 15 // this property
});
var grid = $('#grid').data('kendoGrid');
grid.setDataSource(dataSource);