Hello,
HTML
JS
Steps for produce this issue.
FF-17.
Step 1 : Add above code in to http://try.kendoui.com/web/widget-initialization/1
Step 2 : Filter the 'ship city' column by 'jayesh' and Click on filter button.
Step 3 : Issue raised here
It removed the scroll bar from the grid.
IE-9.
Step 1 : Add above code in to http://try.kendoui.com/web/widget-initialization/1
Step 2 : Filter the 'ship city' column by 'jayesh' and Click on filter button.
Step 3 : Clear the filter from 'ship city' column
Step 4 : Issue raised here
It miss aligned the data and header row. (Because it auto scroll to the Left)
Thanks,
Jayesh Goyani
HTML
<
div
id
=
"example"
class
=
"k-content"
>
<
div
id
=
"clientsDb"
>
<
div
id
=
"grid"
style
=
"height: 380px"
></
div
>
</
div
>
</
div
>
JS
$(document).ready(
function
() {
$(
"#grid"
).kendoGrid({
dataSource: {
type:
"odata"
,
transport: {
},
schema: {
model: {
fields: {
OrderID: { type:
"number"
},
Freight: { type:
"number"
},
ShipName: { type:
"string"
},
OrderDate: { type:
"date"
},
ShipCity: { type:
"string"
}
}
}
},
pageSize: 10,
serverPaging:
true
,
serverFiltering:
true
,
serverSorting:
true
},
height: 250,
filterable:
true
,
scrollable:
true
,
sortable:
true
,
pageable:
true
,
columns: [{
field:
"OrderID"
,
filterable:
false
},
"Freight"
,
{
field:
"OrderDate"
,
title:
"Order Date"
,
width: 350,
format:
"{0:MM/dd/yyyy}"
}, {
field:
"ShipName"
,
title:
"Ship Name"
,
width: 250
}, {
field:
"ShipCity"
,
title:
"Ship City"
,
width: 300
}
]
});
});
Steps for produce this issue.
FF-17.
Step 1 : Add above code in to http://try.kendoui.com/web/widget-initialization/1
Step 2 : Filter the 'ship city' column by 'jayesh' and Click on filter button.
Step 3 : Issue raised here
It removed the scroll bar from the grid.
IE-9.
Step 1 : Add above code in to http://try.kendoui.com/web/widget-initialization/1
Step 2 : Filter the 'ship city' column by 'jayesh' and Click on filter button.
Step 3 : Clear the filter from 'ship city' column
Step 4 : Issue raised here
It miss aligned the data and header row. (Because it auto scroll to the Left)
Thanks,
Jayesh Goyani