I'm displaying a tooltip required error message using the validator when the dropdown isn't selected.
When the dropdown is selected, can the error message be automatically hidden?
I'm not worried about displaying other messages so when it's selected, I'd like the error to disappear - but not all errors.
Your suggestions appreciated ...
Thanks,
Larry
Hi Telerik,
My experience with this widget has been... awful. I mean really, I am just finding bugs every day it seems like. Was this widget Q/A'd? It honestly seems like it wasn't... Anyways...
Here's another bug:
Reproduction
Expected Result
Like Excel, sorting should update formulas with their appropriate cell references. In the repro above, the "=E4" formula should have updated to be "=E19". What's odd is it also breaks all formulas. No formulas will update the sort as soon as you scroll.
Github link: https://github.com/telerik/kendo-ui-core/issues/3442

My gantt chart task schedule timelines do not appear when the gantt widget is initialized. (see attached Screenshot 1). I've set the default selected view to day, week, month and year and it is happening across all of them. The timelines do appear once you toggle the view post initialization (see screenshot 2 for reference). Modifying any task start date or end date also fixes the issue. The other task information (title, start, end) all display fine post initialization. Any ideas?
If you attempt to choose a criteria filter after applying a "checkbox" filter, the filter will error out with:
Uncaught TypeError: Cannot read property 'criteria' of undefined<br> at eval (eval at setter (https://kendo.cdn.telerik.com/2017.2.621/js/kendo.all.min.js:25:31060), <anonymous>:3:15)
This appears to be a bug in the spreadsheet as it appears in our application as well as the Kendo UI demo.
Steps to reproduce:
1) Go to the filtering demo: http://demos.telerik.com/kendo-ui/spreadsheet/sorting-filtering
2) Click the filter on the "Client" column.
3) Uncheck a few of the client values then hit apply.
4) Click the filter again, but this time expand the filter by criteria.
5) Select an item from the dropdown.
6) Notice a javascript error occurs, and the filter cannot be applied.
Hi,
As my title suggests, Im trying to set the initial value of a comboboxthat uses Server Filtering.
A perfect example is your own Server Filter Demo (http://demos.telerik.com/kendo-ui/combobox/serverfiltering). Using this as an example, Im trying to have product 'Chai' (ProductID: 1) pre-selected before the user starts interacting with the widget.
Do you have any suggestions?
Thanks and kind Regards,
Grant

Hi.
I can set the dragClue template on a TreeView, but can't set it on a TreeList.
For a simple example, please see http://dojo.telerik.com/IVigUt.
Are there any work-arounds?
Thank you!

When a user double clicks on the background inside the scheduler all events disappear.
Please could you let me know how I can stop this happening.

I have an MVC grid with a datetime column. I am using the Kendo DatePicker for the column. Edit mode for the grid is set to InLine. When the user clicks on the row, the row goes into edit mode. The datePicker for my datetime column displays correctly but when I click on the date icon to display the calendar, nothing happens.
The MVC code for the column looks like this:
columns.Bound(p => p.DateOfSale).Title("Date of Sale").EditorTemplateName("DatePicker").ClientTemplate("#= DateOfSale ? moment.utc(DateOfSale,'MM/DD/YYYY').format('MM/DD/YYYY') : ''#").Width(120);
My DatePicker code is this:
@using Kendo.Mvc.UI
@model DateTime?
@(Html.Kendo().DatePickerFor(m => m)
.Format("MM/dd/yyyy")
)
Hi,
I have a dataSource with a number of fields. Is there any way to get the list of these fields, in the order specified when the datasource was created.
I know I can get the list by using dataSource.options.schema.model.fields, however the order in alphabetical and not in the order I used when I created the datasource.
Thanks!