Hi
I am using Kendo UI 2016.1.412 with bootstrap and Angular. I have found that IE 11 (11.0.9600.18205) has some issues with selectable/clickable elements. DateTime picker selector, dropdowns etc. Borders were missing, hover over would cause icon to disappear. Chrome worked fine.
After playing about I found that doing the following made a big improvement :
.k-select {
opacity: 0.9999
}
I believe this is an IE issue since it appears to be so random.
Jeff
Here is demo code: <div id="grid"></div><script>$("#grid").kendoGrid({ columns: [ { field: "productName" }, { field: "category", values: [ { text: "Beverages", value: 1 }, { text: "Food", value: 2 }, { text: "Filter not working value", value: 0 } ] } ], dataSource: [ { productName: "Tea", category: 1 }, { productName: "Ham", category: 2 }, { productName: "Bread", category: 0 } ], filterable: true});</script>
Replication steps:open filter menu for "category" column and pick "Filter not working value" (very important that it's value = 0)
Actual result:grid is empty
Expected result: grid is filtered to have the only row with product name "Bread"
Please help me understand what I'm doing wrong or confirm that it's a bug.
Hi there,
The Grid and Splitter are using two different loading spinners - a big one for Grid and a small one for Splitter - see attached images.
Is it possible to show the bigger Grid spinner when the Splitter is loading?
Thanks!
Hi,
We are using kendo ui angular js.
We try to implement a functionality that user can select multiple grid rows, drag them together and drop to schedular.
But currently only one row can be dragged even multiple rows are selected.
Is there a solution to resolve this issue?
Thanks
I need to place some text in the center of a donut chart's hole. I looked at the following guidelines:
http://docs.telerik.com/kendo-ui/controls/charts/how-to/donut-chart-hole-text
Given my current scenario I am not able to take advantage of the CSS option. So I am trying the render event approach. I get a typescript error on the "e.sender.surface.draw(text);" statement which says "Property 'surface' does not exist on type 'Chart'."
