When you click on the filter icon in a Grid column, the popup window by default sets the focus to the drop down list for the filter operators(Contains, Starts With, etc.). My users want to start typing in the text field immediately. How do I set the focus to the text field as soon as the filter box pops up? I looked at the filterMenuInit event, but couldn't see a solution.
Thanks.
Hi,
I'm trying to implement some kind of logic to dynamic build Pareto chart using kendo jquery. Please find my example here - https://dojo.telerik.com/AhabIZow and a short description how it looks like:
1. configured series outside of the scope - seriesSettings. It should be able to contain more series (not only pareto)
2. depending on the seriesSettings, set the type = column and add a line series
3. handle the datasource change event and add values behind the calculated percent. I used to add the values in the data items behind each category as expect the line chart to take the maximum.
In the end I face a problem as the columns are not ordered by values descending. Another thing is that the part with the custom aggregation logic may be is not necessary. I tried using the datasource groupage, but it creates a new series per each category. Could you please advise how to fix these problems and is there a better way or event handling to achieve the Pareto requirements.
Thanks, Boyan.
Hello,
Currently running Kendo UI Builder has missing the Treelist component, need to integrate Treelist component drag & drop without update the whole Kendo UI Builder. What is the procedure? please guide step by step. Thank you
Looking forward to it.
BR/Ikram
Hello,
i've been searching with no luck on how to display the time from 1:00pm to 13:00 on the time ruler. I am using mvc razor for my project, could you guys guide me on the right direction? Thanks!

Hi, Dev Team!
Where i can retrieve all list of possible icons for breadcrumb?
Thank you.

If I load my treeview, then apply .filter on the root dataSource, when I open my nodes, the sub-items are all displayed, they are not filtered.
But, it works if loadOnDemand = false.
You KNOW that bug, because in that sample, you specifically set the "loadOnDemand = false" option.
https://docs.telerik.com/kendo-ui/controls/navigation/treeview/how-to/filtering/filter-out-search-results
I was able to fix it by applying the "main" filter to my nodes dataSource (node.children), on the "expand" event.
But, I think you should fix it in your source code instead!

<div id="AffectedCountries" name="AffectedCountries" data-role="grid" data-bind="source: dudu.AffectedCountries" data-columns='[{"field": "Name", "title": "Name", "width": 180 }, {"field": "ValidFrom", "title": "Valid From", "width": 170}, {"field": "ValidFrom", "title": "Valid From", "width": 170}, {"command":"", "width": 50}]' data-row-template="list-country-group-row-template" ></div><script type="text/x-kendo-template" id="list-country-group-row-template" > <tr role="row" class="k-row" data-bind="attr: { idRow: IdForBinding }"> <td data-bind="text: Name"></td> <td class="with-required"> <input type="date" data-type="date" data-role="datepicker" class="validFrom" required data-format="yyyy-MM-dd" data-bind="value: ValidFrom, events: {change: validFromChanged}" /> <span class="required">*</span> </td> <td> <input type="date" data-type="date" data-role="datepicker" class="validTo" data-format="yyyy-MM-dd" data-bind="value: ValidTo, events: {change: validToChanged}"/> </td> <td class="k-command-cell"> </td> </tr></script>
I have a template with rows, each row with 2 dates, bound to an entity. Both dates have a kendoDatePicker.
I need to apply some constraints, like ValidTo value should have as min the value of ValidFrom.
And I would like to prevent the user from typing wrong values in the input field. Like "DateInput()" for ASP .NET Core or "dateInput: true" in Kendo.
Is there a way to do this? Since I could not fing any "data-*" attribute to use, and the fields do not have an Id, being bound to a viewModel.
Should I generate some kind of Id for each ValidFrom and ValidTo, for each row, and bind a $(id).kendoDatePicker()?
