I added a grid to one of our pages and enabled Paging. There are strange dots appearing on the grid though, see screen shot.
How do I remove the dots?
Here's my Grid:
How do I remove the dots?
Here's my Grid:
@(Html.Kendo().Grid(Model.Items as IEnumerable<
Transaction
>)
.Name("KendoCrGrid")
.Columns(columns =>
{
columns.Bound(e => e.TradeDate).Title("Trade Date").Format("{0:MM/dd/yyyy}");
columns.Bound(e => e.SettlementDate).Title("Settlement Date").Format("{0:MM/dd/yyyy}");
columns.Bound(e => e.Activity).Title("Activity");
columns.Bound(e => e.Description).Title("Security Name");
columns.Bound(e => e.Symbol).Title("Symbol");
})
.Sortable()
.Pageable()
.DataSource(d => d
.Ajax()
.PageSize(20)
.ServerOperation(false)
))