$("#grid").kendoGrid({<br> dataSource: [<br> { name: "Jane Doe", age: 20 },<br> { name: "John Doe", age: 30 }<br> ]<br>});I have a dropdownlist with multiple columns.
When a user wants to filter something, i want to retrieve all the records which contains the filter text in any column, not only on text column.
I have tried to manage the filter event, and change the filter, but its not working. What is it wrong with my code?
01.@(Html.Kendo().DropDownList()02. .Name("CEBE")03. .HtmlAttributes(new { style = "width:100%" })04. .OptionLabel("Seleccione...")05. .HeaderTemplate("<div class=\"dropdown-header k-widget k-header\">" +06. "<table><tr>" +07. "<td style='width:110px'>CEBE</td>" +08. "<td>Nombre</td>" +09. "</tr></tabla>" +10. "</div>")11. .Template("<span class=\"k-state-default\"></span>" +12. "<span class=\"k-state-default\">" +13. "<table><tr>" +14. "<td style='width:110px; padding-right:5px;'>#: data.Codigo#</td>" +15. "<td style='width:auto;'>#: data.Nombre#</td>" +16. "</tr></table>" +17. "</span>")18. .DataTextField("Nombre")19. .DataValueField("Codigo")20. .Filter(FilterType.Contains)21. .Events(e=> e.Filtering("filterCebe"))22. .BindTo((List<Sample.MaestrosService.CEBE>)ViewBag.ListaCebesUtilizados)23. )24. 25.26.<script text="text/javascript">27.function filterCebe(e) {28. debugger;29. var filterValue = e.filter.value;30. var newFilter = {31. logic: "or",32. filters: [33. { field: "Nombre", operator: "contains", value: filterValue, ignoreCase: true },34. { field: "Codigo", operator: "contains", value: filterValue, ignoreCase: true }35. ]36. };37. var dll = $("#CEBE").data("kendoDropDownList");38. dll.dataSource.filter(newFilter);39. } </script>
Ok, I found this thread http://www.telerik.com/forums/chart-pan-zoom-feature-without-setting-the-datasource-property which says you should use a dataSource for panning and zooming. That was a couple years, and I want to make sure nothing has been updated and you still have to use a dataSource.
This is related to my other multi-axis and zooming and panning question because before I was using series data and it was working well, but since apparently we have to use dataSource for panning and zooming I'm having some issues.
Are there any examples of multi-axis with panning and zooming?
Decimal separator changes comma to dot when focused to update cell. see in attached images.
Notes:
GridEditMode.InCell
------------
columns.Bound(p => p.ALIS_FIYATI).Width(220).Format("{0:n2}");
-------------
<script src="@Url.Content("~/Scripts/kendo/cultures/kendo.culture.tr-TR.min.js")"></script>
<script>
kendo.culture("tr-TR");
</script>
Hi there,
I currently have an issue where we have a kendoSplitter that splits a ui-view in two. In the left part of the splitter, I have a kendoGrid and below that I have a kendoWindow definition (in angular).
I have a button that, on click, will center my windows and then open it.
The problem is that my window is not centered at all, it seems to be stuck in the left part of the splitter. Also when my grid have a lot of data and there is a scroll, it will open the window all the way down of the scroll.
Is there any way to fix this ?
Do I have to manually place the window using Javascript and CSS or is there an automatic thing to do ?!
Thanks in advance !

I'm using the datasource below as input to a bar chart.
How can I use the same datasource as input to a TreeMap chart? Or must I do another database call?
[{"category":"Decisive + Very","value":206,"explode":false,"color":"#3073ad"},{"category":"Decisive + Satisfied","value":14,"explode":false,"color":"#428bca"},{"category":"Major + Very","value":374,"explode":false,"color":"#2b772b"},{"category":"Major + Satisfied","value":175,"explode":false,"color":"#3c9b3d"},{"category":"Major + Neither","value":6,"explode":false,"color":"#64c465"},{"category":"Major + Slightly","value":2,"explode":false,"color":"#8dd68e"},{"category":"Some + Very","value":37,"explode":false,"color":"#b36d0e"},{"category":"Some + Satisfied","value":86,"explode":false,"color":"#f0910f"},{"category":"Some + Neither","value":17,"explode":false,"color":"#f0ad4e"},{"category":"Some + Slightly","value":3,"explode":false,"color":"#f1c68b"},{"category":"Minor + Very","value":1,"explode":false,"color":"#9d2a27"},{"category":"Minor + Satisfied","value":8,"explode":false,"color":"#cf322e"},{"category":"Minor + Neither","value":6,"explode":false,"color":"#d86562"},{"category":"Minor + Slightly","value":7,"explode":false,"color":"#e09290"},{"category":"Minor + Dissatisfied","value":4,"explode":false,"color":"#eececa"},{"category":"No + Satisfied","value":1,"explode":false,"color":"#4b4b4b"},{"category":"No + Neither","value":4,"explode":false,"color":"#747474"},{"category":"No + Slightly","value":3,"explode":false,"color":"#9c9c9c"}]
Hello all,
I need to make a KendoUI Grid with TabStrip detail template(like http://demos.telerik.com/kendo-ui/grid/detailtemplate but with one grid in every tabs)
TabStrip have 3 tabs.
I need to put one grid in every tab.
Works fine with one grid, but no works with many.
In function detailInit when i try to create the second tab "detailRow.find(".plata").kendoGrid" obtain "kendo.web.js:44029 Uncaught TypeError: Cannot read property 'locked' of undefined".
Below is a part of the code:
<script type="text/x-kendo-template" id="template">
<div class="tabstrip">
<ul>
<li class="k-state-active">
Cantitativ
</li>
<li>
Plata
</li>
<li>
Expeditie
</li>
</ul>
<div>
<div class="cantitativ"></div>
</div>
<div>
<div class="plata"></div>
</div>
<div>
<div class="expeditie"></div>
</div>
</div>
</script>
.....
function detailInit(e) {
var detailRow = e.detailRow;
detailRow.find(".tabstrip").kendoTabStrip({
animation: {
open: { effects: "fadeIn" }
},
});
detailRow.find(".cantitativ").kendoGrid({
....
});
detailRow.find(".plata").kendoGrid({
....
});
thanks,