Hi,
I have a grid of "batches" with nested "test plans".
It works with a typical detailInit function which loads the test plans for each batch.
A bit of navigation is added to view and edit the test plans.
All that works well, but it can be repetitive to create the test plan and all its details, so I added a [New from template] button, visible when a batch is "open" in the grid to perform a whole series of updates to form an entire complex test plan in one click.
The issue I have is that once all is created and I detect success, I don't know how to just refresh the detail of the batch.
If I reload the grid entirely, that works well (see below), but it is not a pleasant user experience.
I would love to "just refresh" the children rows and see the new child row appear under the last one without reloading the grid, this way the user would click and immediately see the result.
This different from "just adding" a test plan (that part works well using normal detailInit), because I create a whole lot of grand-children rows, so I have several ajax calls to create grand-children and the process is complete once all the grand-children are created. The "batch grid" is unaware of these grand-children.
Hi,
is there some way to edit the template (header and footer) of a table, ich want to reorganise some elements and change the design of Kendo UI?
Thx for your help

Hello, is it possible to remove the header and footer toolbars from gantt component?
I tried already with css
.k-gantt-header, .k-gantt-footer {
display: none;
}HI All,
I have a grid in which each row consists of some dropdown lists and text boxes.
Users can edit each of the rows independently.
Is there a way to validate the grid even when the user has not clicked on the edit button corresponding to the row? I do not want user to navigate to the next page until all of the data are not corrected on the page.
I have such a method that converts div with id="pdf-div" to pdf.
Html looks correct, and has all styles that are needed, but result pdf has no font-weight style(that is like font-weight:900) on elements, but font-weight: bold works correct.
kendo.drawing.drawDOM("#pdf-div", {
scale: scale,
fitWidth: true,
paperSize: "A4",
landscape: isLandscape,
margin: margin,
})
.then(function (group) {
kendo.drawing.pdf.saveAs(group, fileName, proxyURL, function () {
// window.close();
});
})

How to create detail-template of grid with MVVM?
<form id="form1"><div id="m" data-role="grid" data-toolbar="['excel']" data-excel='{fileName: "List.xlsx", proxyURL: "http://demos.telerik.com/kendo-ui/service/export",filterable: true}' data-editable="false" data-selectable="true" data-filterable="true" data-columnMenu="true" data-groupable="true" data-pageable='{ "pageSize": 10}' data-reorderable="true" data-resizable="true" data-sortable="true" data-height="550" data-no-records= "true" data-detail-template="detailTemplate" data-detail-init="onDetailInit" data-columns="[ { 'field': 'a','title':'a'}, { 'field': 'b','title':'b'} ]" data-bind="source: GridSource"> </div> <script id="detailTemplate" type="text/x-kendo-tmpl"> <div id="detailGrid" data-role="grid" data-toolbar="home" data-selectable="true" data-pageable='{"pageSize": 10}' data-reorderable="true" data-resizable="true" data-sortable="true" data-height="550" data-no-records="true" data-bind="source: GridSource" data-columns='[{'title':'a','field':'a'}]' > </div></form>
</script>this.vm = kendo.observable({ Gridsource:[], }); this.vm.set("onDetailInit", function(e) { var dataItem = $("#detailGrid").data("kendoGrid").dataItem(e.masterRow); kendo.bind(e.detailCell, dataItem); }); kendo.bind($("#form1"), this.vm);This code doesn't work! i can't see the grid
I have requirement where i want to show Day in shift for example 24 days hours can be divided into 3 shift 8 hours each or can 6 hours each.
Against that i wanted to add events in Kendo Scheduler. Each day must have shift as show in below image
in attached image Shift marked for each day and noted with different color.
Each shift can or can not have events.
I'm also expecting functionality where events can move across the shifts.
Please suggest
Hello, I have maybe little complicated question.
We are using Kendo Professional sources to build custom version of Kendo. We have custom CSS modifications and some JS components selections. So when there is a new version, we just get zip with sources from Telerik profile and run modified gulp pipeline. All works fine.
But I'm trying to little more automatic process and I want to use npm package as source. Installed @progress/kendo-ui and used sources in build.
Well, css files seems to be ok, because it is just less compilation. But how to process JS? In downloaded zip file, all JS are for jQuery. But in npm all are as module exports. So I can't use existing gulp tasks to just get custom build.
Is there any way how to use npm and build kendo for pure jQuery use? No Webpack etc.

Hello,
Any help on below much appreciated.
I have two dropdowns using cascading dropdownlist with kendo UI for Asp.net core. Child dropdown depends on parent dropdown.
When i select a option/item in parent drop down list, child dropdown supposed to enable as parent dropdown list has value selected. But child drop list is NOT enabling ad remain disabled.
Below is my code snippet.
See below, option "Category_2" selected but still child dropdown "Product" is not enabled. I tried many solutions, still No luck.
Please help me on this.
How do you inject additional data to a drop down that uses remote data?
I would like to end up with a ProductID=0 and ProductName="Select Choice" as the first option.
https://dojo.telerik.com/ebitOseJ
$(document).ready(function() {
$("#products").kendoDropDownList({
dataTextField: "ProductName",
dataValueField: "ProductID",
dataSource: {
transport: {
read: {
dataType: "jsonp",
url: "https://demos.telerik.com/kendo-ui/service/Products",
}
}
}
});
});