I'm having a series of graphs in which the dates that are displaying in x-axis appear to be tightly packed.Is there any solution to compromise the appearance of dates so that the graph looks clear and readable.
Please refer to the screen shot.
transport: { type: "odata", read: { url: "http://........", beforeSend: function (xhr) { var auth = 'Bearer ' + token; xhr.setRequestHeader('Authorization', auth); } }, },Hi.
I'm validating time picker using ng-pattern with 24 hours format. it is working on key events,but on selection of time picker drop down.
Find the DOJO and the screenshot.
Appreciate your support on this.
I've noticed that when the user performs a 'cut' operation to a row, the spreadsheet's Change event is fired. However, there doesn't appear to be a way to determine that the range was actually cut - or am I missing something?
Also, when a row deletion happens, the change event isn't fired at all. This is presenting a problem for me as I have a set of related data on the page that needs to reflect changes as the user modifies the spreadsheet. Is there a way to effectively catch row deletions?
Hello,
I have an autocomplete. It has filtering event handler to prevent data loading when there are less than 3 characters typed by the user. Sometimes, when I type the 3 characters very fast, popup with no items is shown. When I type the 4th character, the items appear.
The data are loaded from the remote server, so I would say that the problem is caused by a late response from the server. But I don't know why the popup doesn't show the items after it receives the response. Or is there a way to display the popup programatically?
This is the code that creates the autocomplete:
$("#institution").kendoAutoComplete({ delay: 0, template: "<span id='accountname'>#:name#</span><span id='accountid' style='display:none'>#:id#</span>", filtering: function (e) { var filter = e.filter; if (!filter.value || filter.value.length < 3) { //prevent filtering if the filter is an empty string, or if the value is too short, so it would have to load many items e.preventDefault(); this.close(); } else { this.dataSource.options.transport.read.data.fetchxml = "<fetch mapping='logical'> <entity name='account'> <order attribute='name'/> <filter> <condition attribute='name' value='" + $("#institution").val() + "%' operator='like' /> <condition attribute='statecode' value='0' operator='eq'/> </filter> </entity> </fetch>"; this.dataSource.read(); } } });Thanks for your answers.
Boris
1. Creating events by adding them to the schedulerDataSource programatically
2. Everything works, except recurring events
3. As soon as a recurring event exists, all events are messed up - displayed in wrong time slots, and remaining calendar events wont display at all.
Exception is:
kendo.all.js line 61287
Uncaught TypeError: Cannot read property 'recurrenceException' of undefined
_addExceptionDate: function(e) {
var t = e.start
, n = this.reader.timezone
, i = this.get(e.recurrenceId)
, r = i.recurrenceException || "";
L.isException(r, t, n) || i.set(se, r + L.toExceptionString(t, n))
}
The offending line is:
r = i.recurrenceException || "";
i is the Recurrence ID of the Event.
i cannot have a child property, from what I see, called recurrenceException. Why wouldnt r = this.get(e.recurrenceException)?
Looking for a solution - this is a time sensitive project (of course) and this one issue is holding up everything else from being delivered; all of the remaining functions and features are great and working, so I think I have a grasp on it, but this one is not working.
Hi,
I'm using the Kendo UI Diagram on a project. The project targets the Chrome browser - so I've only testet in Chrome.
Sometimes I experience a strange behavior where the entire diagram is moved when I click and hold somewhere on the diagram and move the mouse - the same way as the diagram is moved when Ctrl is held down, the mouse is clicked and held down on an empty spot and the mouse is moved. I can't select anything on the diagram or make new connections - everything is just moving around.
Sometimes I can simply close Chrome and start it again and everything is back to normal - sometimes I have to restart the computer to make the diagram work as expected.
Any idea what's going on?
Hi. I'm having issues getting the grid.editCell() function when using a grid with locked columns.
I have a grid where the first two columns are locked and I want to put the third column in edit mode. This third column is the first column of the unlocked section of the grid.
For exaple, this works: grid.editCell($("#ddhsampintgrid tr:eq(" + (selectedIndex + 2) + ")").find("td:eq(0)"));
and this works: grid.editCell($("#ddhsampintgrid tr:eq(" + (selectedIndex + 2) + ")").find("td:eq(1)"));
but this does nothing: grid.editCell($("#ddhsampintgrid tr:eq(" + (selectedIndex + 2) + ")").find("td:eq(2)"));
Any ideas on how to get this to work when using locked columns?
Thanks,
Ian