Does anyone have any examples of using Protractor with Kendo controls?
Examples of how to select an item in a Kendo Dropdownlist.
Enter text in to Kendo text input
etc

Hi I need to use a multiselect control in inline edit of a treelist object.
I've not found anythings usefull in forum about that, but there is somethings about the same request in grid control.
At this link there is a usefull documentation but when I use it in my treelist control, it doesn't works.
Cannot read property 'toLowerCase' of undefined
If edit in dojo the example linked above, and changing the definition of grid in kendoTreeList, appear this error.
Is the same I get in my project.
e.slice is not a function
Removing the definition as kendo.data.DataSource to the dataSource object, it "resolve" the first problem, and TreeList data are rendered correctly, but there are no items in multiselect column selector, cause this new error.
Thanks
Hi,
I have following code:
01.var arrlistNamaKaryawan;02.03.google.script.run.withSuccessHandler(populateNamaKaryawan).getNamaKaryawanReceived();04. 05.var dataSource = new kendo.data.DataSource({data : arrlistNamaKaryawan}); 06. 07.// create a new widget instance08.$("#employee").kendoAutoComplete({ dataSource: dataSource });09. 10. // retrieve the widget instance11. var empAutoComplete = $("#employee").getKendoAutoComplete();12.13.function populateNamaKaryawan(listNamaKaryawan){14. console.log(listNamaKaryawan);15. console.log(Object.keys(listNamaKaryawan));16. console.log(Object.values(listNamaKaryawan));17. console.log(Object.entries(listNamaKaryawan));18. console.log(arrAnimal);
19. arrlistNamaKaryawan = Object.keys(listNamaKaryawan);20. //arrlistNamaKaryawan = listNamaKaryawan;21.}22.23.function getNamaKaryawanReceived(){24. var ss = SpreadsheetApp.openByUrl(urlStockBarangIT);25. var ws = ss.getSheetByName("Master Karyawan");26. var data = ws.getRange(2, 2, 3, 1).getValues();27.28. var options = {};29. data.forEach(function(v){30. options[v[0]] = null; //convert to object31. });32.33. console.log(options);34. return options;35.36. //console.log(data);37. //return data;38.}
But my #employee AutoComplete still no data
Thank you

Is it possible to use the treeList filter programmatically ?
For example , let's say I have a treeList with a searchBox, once the user tap something in the searchBox , I programmatically apply the filter using directly the "contains" option and show the result to the user.
Hi Support.
The Search panel is a great new feature (https://demos.telerik.com/kendo-ui/grid/search-panel).
Will it work together with the toolbar template?
Best regards
Morten
Hi Team,
I'm using clustered Kendo bar chart. We are filtering the data based on year (external dropdown). I've tried with all your suggested links but unable to figure out what I'm missing on it. JS file attached for your reference and aspx code snippet mentioned below. Can you please help with it?
aspx
<form runat="server">
<section class="content">
<div class="box">
<div class="box-body">
<div>
<h4 class="box-title" id="ctlTitle">Open Tickets Summary and Graph</h4>
</div>
<div class="row">
<div class="col-md-4">
<label class="form-group" id="lblCategory">Year</label>
<select id="ddlYear" class="form-control">
<option>2020</option>
<option>2019</option>
<option>2018</option>
<option>2017</option>
<option>2016</option>
</select>
</div>
</div>
</div>
</div>
<div>
<div class="box">
<div class="box-body">
<div>
<div id="OTicketSummaryGraph"></div>
</div>
</div>
</div>
<div class="box">
<div class="box-body">
<%--<div>
<div id="chartdiv" style="height: 300px; width: 100%;"></div>
</div>--%>
<div class="demo-section k-content wide">
<div id="chart"></div>
</div>
</div>
</div>
<script src="Scripts/TSPortal/OTicketSummary.js"></script>
</div>
</section>
</form>
I try resize , refresh and redraw but chart width is still same.
When i click left menu a left menu hide and kendo div show from 70% to 100% but when div 100% show then kendo width is still 70% and once i toggle to 70% kendo cut right side on 70% width
my code structure
Html
<div>
<div class="slider"><a class="showhide" href="#">Click Width increase and decrease </a></div>
<div class="kendo-chart-half"">
<div id="kendo-chart">
chart show
</div>
</div>
</div>
css
.slider {width:30%: float:left}
.kendo-chart-half{width: 70%: float:left}
.kendo-chart-full{width: 100%: float:left}
Jquery
$(document).on('click', '.showhide', function () {
$('#verticalTabCol , .hiddenSlideVariable').toggle(200);
$('.kendo-chart-half').toggleClass("kendo-chart-full", 200);
$('#kendo-chart').data('kendoChart').resize();
$('#kendo-chart').data('kendoChart').refresh();
$('#kendo-chart').data('kendoChart').redraw();
});