Hi,
May I know is current official release of Kendo UI compatible with jQuery 3.0 final? If no, then is that any plan/timeline to make it compatible?
Thank you.
I have an angular directive that wraps a virtual kendo ui dropdown. The issue i'm having is that even though i am setting the dataValueField when i select an dropdown item the k-ng-model bound field is set to the entire item object rather than the property of the object specified by the dataValueField. Not sure what i'm doing wrong.
var selectDataSource = new kendo.data.DataSource({ transport: { read: function(options) { var currentPage = getItemPage(options.data.skip, options.data.take); options.success(currentPage); } }, schema: { data: "currentPage", total: "total" }, pageSize: pageSize, serverPaging: true // enable serverPaging so take and skip are sent as }); //setup the dropdown options object scope.dropDownListOptions = { dataTextField: scope.textField, // 'name' dataValueField: scope.valueField, // 'id' dataSource: selectDataSource, height: height, virtual: { itemHeight: 26, valueMapper: function(options) { var itemIndex = scope.itemList.findIndex(function(element, index, array){ return options.value === element[scope.textField]; }); options.success(itemIndex); } } }
/*directive html*/
<select id="{{selectId}}"
kendo-drop-down-list
k-options="dropDownListOptions"
k-ng-model="modelValue"></select>
The other question relates to the optionLabel default option. Is there any way to disable this option so that the user can't select it?

$('#targetChart').kendoChart({
dataSource: {
data: data.d.results,
group: {
field: "Location",
},
},
seriesDefaults: {
type: "donut",
},
series: [{
field: 'Id',
categoryField: 'Location',
}],
});
We have a grid
@(Html.Kendo().Grid<PatientRecord>(Model.WorklistPatientRecords)that has a ClientTemplateId
.ClientDetailTemplateId("grid-details-form")Where "grid-details-form" id is in
@{ Html.RenderPartial("_DiagnosisRecordComments");
The implied model for the partial that makes up the ClientTemplate is obviously PatientRecord
Now within _DiagnosisRecordComments I have some code that looks like the following
#
new AcmeGroup.ValidationComments(ValidationCommentsViewModel);
#
ValidationCommentsViewModel is a property of PatientRecord and that works fine.
The problem is that I want to pass PatientRecord itself....the actual implied model that is used by the client template/Partial. If I use
#
new AcmeGroup.ValidationComments(PatientRecord);
#
I get an error.
What name do I use for the actual implied model that ClientDetailTemplate actually uses?

Hi, please look at the following example:
http://docs.telerik.com/kendo-ui/controls/layout/window/how-to/add-auto-resizing-splitter
Please run the example and follow these steps:
1. Move the splitter to the right.
2. Move mouse to the right edge of the window and drag towards the left.
(i.e. resize the window to be smaller using the right edge of the window)
3. Note that the splitter does not resize proportionally and becomes hidden such that you can no longer operate the splitter.
Are there any fixes/workarounds for this?
Thanks,
Michelle

Hello
I am creating a directive that encapsulates the kendo ui gantt, and I'm trying to use globalization but is not working.
I am using $watch in language attr and when changes he made the search for the file and then re-create the directive, but has no effect.
Can you help me?
Attached is my directive, only for testing..
<script id="NodeViewTemplate" type="x-kendo-template"> <div data-role="grid" id="grid1" data-scrollable="true" data-sortable="true" data-groupable="false" data-filterable="true" data-reorderable="true" data-resizable="true" data-row-template="NodeRowTemplate" data-alt-row-template="NodeAltRowTemplate" data-toolbar="['excel']" data-excel="fileName: 'Nodes.xlsx', filterable: true" data-columns="[ { field: 'statusimage' , width: 175 , title: 'Status' }, { field: 'idradio', width:100 , title: 'Device' }, { field: 'peakCurrent',width:100 , title: 'Peak' }, { field: 'avgCurrent',width:100 , title: 'Average' }, { field: 'dateupdated', width:200 , title: 'Last Updated' }, { field: 'nextupdate', width:200 , title: 'Next Update' }, { Command: ['edit'] , width:150 , title: ''}, ]" data-bind="source: Nodes, visible: isVisible"> </div> </script>Hello,
I would like to ask if there is a possibility the filtering which is enabled from datasource (filterable: true) to be active and visible but readonly.
Actually we have a scenario in which in 'Edit mode' the user can choose by which columns the grid to be filtered, and then when saved and ran in 'Live mode' the grid is reloaded and the user could only see by which columns the grid data is filtered but cannot change the filter.
Thank you,
Regards
I though that in all kendo widgets, wrapper property is the outer element for widget. But in TabStrip case this is not true, because wrapper and element point to same jQuery element (when created from div, not ul).
Why?
Is there any other widget, which wrapper property do not point to top(the most outer) jQuery element?