Hi Guys,
Have just tripped over a IE9 rendering issue whereby the grid pager crawls up and down the screen as you move the mouse over the grid rows.
To illustrate the problem open the following fragment in IE9 and move the mouse over the grid rows.
The problem appears to be related to grouping because if you remove the
group: { field: "ContactName" }
line the grid renders without problem under IE9.
Regards
Alan
Have just tripped over a IE9 rendering issue whereby the grid pager crawls up and down the screen as you move the mouse over the grid rows.
To illustrate the problem open the following fragment in IE9 and move the mouse over the grid rows.
<!DOCTYPE html>
<
html
>
<
head
>
<
base
href
=
"http://demos.telerik.com/kendo-ui/grid/index"
>
<
style
>html { font-size: 12px; font-family: Arial, Helvetica, sans-serif; }</
style
>
<
title
></
title
>
<
link
rel
=
"stylesheet"
href
=
"http://cdn.kendostatic.com/2014.3.1119/styles/kendo.common.min.css"
/>
<
link
rel
=
"stylesheet"
href
=
"http://cdn.kendostatic.com/2014.3.1119/styles/kendo.default.min.css"
/>
<
link
rel
=
"stylesheet"
href
=
"http://cdn.kendostatic.com/2014.3.1119/styles/kendo.dataviz.min.css"
/>
<
link
rel
=
"stylesheet"
href
=
"http://cdn.kendostatic.com/2014.3.1119/styles/kendo.dataviz.default.min.css"
/>
<
script
src
=
"http://cdn.kendostatic.com/2014.3.1119/js/jquery.min.js"
></
script
>
<
script
src
=
"http://cdn.kendostatic.com/2014.3.1119/js/kendo.all.min.js"
></
script
>
</
head
>
<
body
>
<
div
id
=
"example"
>
<
div
id
=
"grid"
></
div
>
<
script
>
$(document).ready(function () {
$("#grid").kendoGrid({
dataSource: {
type: "odata",
transport: {
},
pageSize: 5,
group: { field: "ContactName" },
},
pageable: {
refresh: true,
pageSizes: true,
buttonCount: 5
},
columns: [{
field: "ContactName",
title: "Contact Name",
width: 400
}, {
field: "ContactTitle",
title: "Contact Title",
width: 400
}, {
field: "CompanyName",
title: "Company Name",
width: 400
}, {
field: "Country",
width: 400
}]
});
});
</
script
>
</
div
>
</
body
>
</
html
>
The problem appears to be related to grouping because if you remove the
group: { field: "ContactName" }
line the grid renders without problem under IE9.
Regards
Alan