This is a migrated thread and some comments may be shown as answers.

Strange Dots appearing on Grid

1 Answer 415 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Ian
Top achievements
Rank 2
Ian asked on 15 Jul 2013, 06:49 PM
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:

@(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)
      ))

1 Answer, 1 is accepted

Sort by
0
Accepted
Richard
Top achievements
Rank 1
answered on 15 Jul 2013, 07:52 PM
If I had to guess without the code, something you are doing CSS wise is overwriting Kendo's k-reset style. It should have a list-style of none and instead it has the original list style.
Tags
Grid
Asked by
Ian
Top achievements
Rank 2
Answers by
Richard
Top achievements
Rank 1
Share this question
or