Hi,
I want to change dynamically category axis tile. I'm using angular and want to do that angular way. Here is code: http://dojo.telerik.com/@arturkula/ulOgI/13
When clicking on category radios the category axis title should change.
The title changes only when i'm using jquery.
Can it be achieved not using jquery?
Thanks for your help.
Hello,
I have a scheduler setup (Kendo UI) with a recurring event every 2 weeks. Everything seems fine until you get to the New Year, it then goes to the first of the year (even though that is only 1 week away from 12/25/2015) and then continues to recur every 2 weeks from 01/01/2016.
$("#dvCalendar").kendoScheduler({
date: new Date(),
views: [{ type: "month" }],
selectable: false,
dataSource: {
data: [{
id: 1,
start: new Date("2015/11/13 8:00"),
end: new Date("2015/11/13 17:00"),
title: "Payday",
description: "Payday",
recurrenceRule: "FREQ=WEEKLY; INTERVAL=2;"
}],
},
editable: false,
});
Result is fine until 12/25/2015, it then goes to 1/1/2016 and proceeds to recur every 2 weeks from 1/1/2016...
Am I missing a setting or something? I am using version "Kendo UI Beta v2015.3.916" of the file kendo.web.min.js.
Thanks!
Hey,
I'm using php wrappers in order to build my Kendo remote binding Grid.
the restfull server is rendering the output as a JSON format using jsonapi.org v1.0 standard.
ex: {
"links": { ... },
"data": [
{
"type": "people",
"id": "7",
"attributes": {​...},
"relationships": {...},
"links": {...}
}
],
"included": [{...}]
}
using this standard will force you to separate the "foreign keys( ex: positions of the people , compound objects)" and include it into the "included" attribute
you can read more about it in the following link: http://jsonapi.org/format/#document-compound-documents
in my code:
working code:
$EmailAddressField = new \Kendo\Data\DataSourceSchemaModelField('EmailAddress');
$EmailAddressField->type('string');
$EmailAddressField->from('attributes.EmailAddress');
$schema = new \Kendo\Data\DataSourceSchema();
$schema ->model($model)->data('data');​
not working code:
$PositionField = new \Kendo\Data\DataSourceSchemaModelField('Position');
$PositionField->type('string');
$PositionField->from('included.attributes.​Description');
$schema = new \Kendo\Data\DataSourceSchema();
$schema ->model($model)->data(new \Kendo\JavaScriptFunction('function(result) { return result; }'));​
i cant figure out how ​to link my schema->model->data to the whole object , not just the 'data', i need also to get the data that are inside the "included" attribute.
any help?
I have my grid set up so that it receives some additional information in the json response. I want to use this additional information in the row's commands, but I can't quite figure out how. I've tried putting it in a hidden column, and the data is rendered (but not shown, as expected), but if I try to use #= variable # it literally appends that to the classes, not the value of that row cell.
How can I reference a row value elsewhere in the row? Using a template is fine if necessary.
On event edit window:
<select kendo-drop-down-list ng-model="data.AbsenceTypeId" k-options="absenceList" class="form-control" />...
<button class="save-button btn btn-default" ng-click="save(this)">Save</button>
Data to list is binding:
$scope.absenceList = { dataSource: { transport: { read: { url: 'api/absences', dataType: "json" } } }, dataValueField: "Id", dataTextField: 'Name', optionLabel: { Id: "", Name: "" }}
And save event:
$scope.save = function (e) { ...};
When I open event and next clik "save" (don't change anything) sometimes in "e.data.AbsenceTypeId" is null sometimes right value. I don't see the rules. Any ideas?
I use Angular.
Hi,
I would like to create line chart showing only dots/circles, but not showing lines connecting dots.
What is the best/proper/elegant way to do that?
Here is my code: http://dojo.telerik.com/@arturkula/uxAti/7
Thanks in advance for your help.
In the next themes :
- Fiori
-Material
- MaterialBlack
-Nova,
when are using the arrow keys, moving cell by cell, the selection is not visible and the cells are not highlighted.
​As a temporary solution, we have created a css rule that add cell borders. Not showing a border for this 4 themes is this a Telerik choice? There is a better solution? Is this an issue that are you trying to solve in a next release?
Thank you.
Regards,
Cristina. ​
Seems to be decimal separator is not right for de-CH culture. As far we can see, inside the "kendo.culture.de-CH.min.js" file, we have definition that decimal separator is "," (comma), BUT should be "."(point) .
In attached screen shot you can find some details. ​Version of Kendo UI is 2015.2.805
Could you, please, check it?
Thanks.​
Hello,
Another bug in version "Kendo UI v2015.3.1023". Current time marker is not displayed on page GET request. It is displayed after page resize only. Example: http://dojo.telerik.com/UYAxe.
Hi,
Combobox is not selecting the right item in the dropdown when using data virtualization for paging
I have tried the same virtualization configuration(through K-option) with DropdownList but DropdownList selects the right item no matter how quick the text is inputted (as long as you don't tab out of the control).
Combobox without Virtualization also does not have this issue.
When using combobox with Virtualization and if the user types in quickly (only for the first time after launch), it selects the first element in page 0 instead of selecting the right element.
I have demonstrated this behavior in plunker.
http://plnkr.co/edit/gFD8Ib3bOfbw19aklQho?p=preview
If you type in 'lg' quickly and wait, it selects, 'HTC'. Please let me know if I'm missing any configuration.
Thanks,
Deeptha