I am trying to use the paging options in my Ajax-enabled Grid but none of them are enabled. The only thing I can get is the default paging controls. I would like to see total records, page numbers, etc. FYI, the grid does not automatically bind, it binds after a dataSource.read() call.
Tag Helper code:
<kendo-grid name="grdResults" auto-bind="false">
<datasource type="DataSourceTagHelperType.Ajax" page-size="25">
<schema>
<model id="id">
<fields>
. . . (omitted for brevity)
</fields>
</model>
</schema>
<transport>
<read url="Index?handler=Read" />
</transport>
</datasource>
<toolbar>
<toolbar-button name="excel"></toolbar-button>
</toolbar>
<excel all-pages="true" />
<columns>
. . . (omitted for brevity)
</columns>
<sortable enabled="true" />
<pageable enabled="true"
info="true">
</pageable>
</kendo-grid>