This demo shows DJME Grid using Ajax requests for paging,you could use Pagable() method to enabling this feature.And you could using Pagable(index,size) method to specified the paging index and page size for the Grid.
<% Ajax.Dna().Grid() .ClientBind(Url.Action("ClientBinding", "Grid")) .Columns(cols=>{ cols.Bound(m=>m.FieldNameHere); ... }) //Specified the Grid is start in page 3 and the page size set to 8 items. .Pagable(3,8) .Render(); %>