Please look at the attached image. There is a white space above the grid header. Why does this happen?
This is the default kendo theme and there is nothing else on this page. It is the default web site template in VS 2010 for MVC 4. No styles have been modified.
@(Html.Kendo().Grid<OpenXMLDemo.Models.AppointmentsDTO>().Name("Appointments")
.Columns(columns =>
{
columns.Bound(o => o.FirstName).Title("First Name").Width(80);
columns.Bound(o => o.LastName).Title("Last Name").Width(80);
columns.Bound(o => o.ClientMemberID).Title("ID").Width(80);
columns.Bound(o => o.ClientName).Title("Client").Width(80);
columns.Bound(o => o.VendorName).Title("Vendor").Width(90);
columns.Bound(o => o.ProviderID).Title("Provider ID").Width(75);
columns.Bound(o => o.NPI).Title("NPI").Width(70);
columns.Bound(o => o.AppointmentDateDisplay).Title("Date/Time").Width(120);
})
.DataSource(dataSource => dataSource
.Ajax()
.Read(read => { read.Action("BindAppointments", "Home"); }))
)
This is the default kendo theme and there is nothing else on this page. It is the default web site template in VS 2010 for MVC 4. No styles have been modified.
@(Html.Kendo().Grid<OpenXMLDemo.Models.AppointmentsDTO>().Name("Appointments")
.Columns(columns =>
{
columns.Bound(o => o.FirstName).Title("First Name").Width(80);
columns.Bound(o => o.LastName).Title("Last Name").Width(80);
columns.Bound(o => o.ClientMemberID).Title("ID").Width(80);
columns.Bound(o => o.ClientName).Title("Client").Width(80);
columns.Bound(o => o.VendorName).Title("Vendor").Width(90);
columns.Bound(o => o.ProviderID).Title("Provider ID").Width(75);
columns.Bound(o => o.NPI).Title("NPI").Width(70);
columns.Bound(o => o.AppointmentDateDisplay).Title("Date/Time").Width(120);
})
.DataSource(dataSource => dataSource
.Ajax()
.Read(read => { read.Action("BindAppointments", "Home"); }))
)