
Hi,
I'm using GeoJson Map for my project.
It's a Map with all the countries, and I've used the Json file in the demo example (content/dataviz/map/countries-users.geo.json). But unfortunately it seems like it doesn't have the coordinates of all the countries. E.g. it's missing "Sint Maarten" and "Aruba".
I was wondering if you could let me know where I can find the correct coordinates. Because I couldn't find any good reference that works with Kendo Map.
Thanks
Hello,
I have initialized an instance of Kendo Scheduler.
It all works as expected in Chrome, but when I load the page in FF or Safari, it get this error in the console:
From kendo.web.min.js.
FF:
TypeError: r.slot is undefinedSafari:
TypeError: undefined is not an object (evaluating 'r.slot.end')Anyone knows what could be the cause of that?
Dear Team,
We create Menu using Kendo UI and theme of Menu is changed dynamically using the following code.
Now, we have added Radial Gauge to our Application. ​but when I change the theme, Menu theme is changing whereas Radial Gauge Theme is not changing.. ​
1. Please ​let me know how to change the theme of Radial Gauge ?
2. We are planning to apply theme for across ​our project, like ​Kendo UI Demo site. Please let me know the approach and if you can share me any example.
Theme Loading:
$(document).ready(function () {
$("#Menu").kendoMenu();
$("#ddlTheme").kendoDropDownList();
var themeData = [
{ text: "Default", value: "kendo.default.min.css" },
{ text: "Bootstrap", value: "kendo.bootstrap.min" },
{ text: "Black", value: "kendo.black.min" },
{ text: "Blue Opal", value: "kendo.blueopal.min" },
{ text: "Fiori", value: "kendo.fiori.min" },
{ text: "Flat", value: "kendo.flat.min" },
{ text: "High Constrast", value: "kendo.highcontrast.min" },
{ text: "Material Light", value: "kendo.material.min" },
{ text: "Material Black", value: "kendo.materialblack.min" },
{ text: "Metro Light", value: "kendo.metro.min" },
{ text: "Metro Black", value: "kendo.metroblack.min" },
{ text: "Moon Light", value: "kendo.moonlight.min" },
{ text: "Office", value: "kendo.office365.min" }
];
$("#ddlThemes").kendoDropDownList({
dataTextField: "text",
dataValueField: "value",
dataSource: themeData,
index: 0,
change: applyTheme
});
Changing Theme:
function applyTheme() {
var theme = $("#ddlThemes").val();
var css = $('link[href^="../../Kendo/styles/"]')[1]; //get my css anchor
if (theme != null) {
css.href = '../../Kendo/styles/' + theme + '.css';
//Changing Radial Gauge:
var guage = $("#gauge1").data("kendoRadialGauge");
var options = guage._originalOptions;
options.theme = "moonlight";
guage.destroy();
$("#gauge1").kendoRadialGauge(options);
}
};
});
Thanks,
Prakash.
Hi,
I have created an AngularJS app and I'm using the kendo-date-time-picker directive. Everything seems to be working just perfectly, but I have observed cases where it seems that Kendo doesn't pick up on the onreadystate of data loaded from a JSON-service...This means that sometimes Kendo does not receive the value coming from the external service, and the input-field is empty.
My question is: Can I somehow force kendo-date-time-picker to refresh itself?
Regards
Peter
Dear Support team,
We started using yours drag&drop functionality and found strange bug on IE.
You can check it on the screencast: http://screencast.com/t/ZvyclZMOjy - it was recorded on your demo.
First I start draging element. You can see how cursor changes during drag - it takes cursor type from under element but only for a while, then it changes for normal drag cursor.
Then, I click Alt+Tab and changing focus to opened near IE developer tool. I have focus to IE developer tool but i can still move element in your demo. You can see that during dragging there is no change in cursor type.
Ten I click Alt+Tab and focus back to IE browser. You can see that during dragging there is still bug - having focus on IE page you have this strange behaviour.
Can you into it? It stops our work on new page for our client.
Radek (Doer) Maziarka
When I add/remove an object from a databound list (using push/splice) the current selection is removed. dataBound event is triggered.
This should only happen if one removes the currently selected item(s).
Hi,
Hopefully someone can tell me what I'm doing wrong here!
Example to re-produce here;
http://plnkr.co/edit/3jLcnD16BdLQNJatBxCu?p=preview
Simple grid with one column built from a template. The template builds a button which includes ng-click as an attribute.
(in index.html)
<script id="link-template" type="text/kendo-templ">
# if (fieldT > 0) { #
<button type="button" ng-click="actionLink('#=fieldT#')">
Field T Link
</button>
# }
else { # No Link
# } #
</script>
The button is build correctly, and includes the ng-click attribute.
However, the on clicking the button, the function is not called (either within the $scope or global functions).
I've included kendo.directives as a dependency when loading angular.
What do I need to do to fix ?
Many thanks!