Hi mate,
Recently I was working with kendo grid (.net mvc project). In a particular scenario I have a list of data that has to be populated in the grid.
for ex: the dummy grid will look like this(added with this post).
is there any possibility for me to add S.No column to act as a static one. If i drag and drop moving up and down the other three columns the S.No should be rearranged to 1,2,3 ...
Also i have another one diffuculty, I select a list of data from one page and populate the data in a grid in another page. the S.no column should be added dynamically. If i select 5 data from page 1 and the grid should have the S.No 1,2,3,4,5
Dear Team,
I have problem with kendo scheduler agenda view in mobile devices. End time in k-scheduler-timecolumn shows incorrect value (it equals to Start time value). Could you please answer how can I fix it?
I am using Kendo UI for Jquery.
I have a grid and a local array as a datasource. The grid is showing, but the data inside is not.
I searched aroud and I can't find what's wrong.
Here is the code: Dojo UI
Per:
https://demos.telerik.com/aspnet-core/grid
can someone provide/post the source for the Editor Templates Names for Country and ClientCategoryEditor?
I'm trying to make an editable grid with a select control in one of the columns (Country), just like the demo... but the source code/markup seems to be incomplete...
I'm looking for the source editor templates behind these:
columns.Bound(p => p.Country.CountryNameLong).Title("Country").EditorTemplateName("Country")
columns.Bound(p => p.Category.CategoryName).EditorTemplateName("ClientCategoryEditor")
fyi these are broken in the edit in teletik repl as well....
maybe if it was a snake it would have bit me...
Thanks

Hello,
We try load ~3-4000 treenodes to treeview but it is very slow. Building the treeview after the datasource is available is ~2 minutes.
The database query duration is few seconds.
Our code:
$("#tvFormulaTree").kendoTreeView({
template: "#if (item.Clickable) {# <a id='" + "#=item.id#" + "' onclick='handleFormulaTreeViewDblClick(\"" + "#=item.FullPathName#" + "\"" + ");' >#=item.Name#</a> #} else {# #=item.Name# #}#",
name: 'tvFormulaTree',
dataTextField: "Name",
dataSource: dsFormula,
loadOnDemand: false
});
var dsFormula = new kendo.data.HierarchicalDataSource({
transport: {
read: function (options) {
$.ajax({
type: "POST",
url: '@Url.Content("~/DD/GetFilteredTreeDataAsync")',
dataType: 'json',
traditional: true,
contentType: "application/json; charset=utf-8",
success: function (result) {
options.success(result);
}
});
}
},
schema: {
model: {
id: "id",
children: "Children"
}
}
});
Can you help please, how can we speed-up this?
Thank you!

Hi,
There has been some progress according to the implementation of zoom in spreadsheet.
Regards,In Kendo Grid it is possible to show/hide buttons in command column conditionally.
How can I achieve that in TreeList?
command: [
{
imageClass: "k-i-info",
name: "details",
text: "Details",
visible: function (dataItem) { return dataItem.LastName.charAt(0) !== "D" }
}
]hello i am new to here ok so i have use kendo Ui forms
but however i am realize one thing my forms are shriek to a small rectangle box where i not sure how i can increased the width of this form it look weird

So now how i can change the style form to make it bigger ?

How to restrict user to input only Alphanumeric Values into the fields "Text", and "ToolTip" when user clicks "Insert Link" option on Kendo tool Editor (CK Editor).
Hi
I am using FileManager Jquery component that get the list of the files from an external rest api (json format) but the response object does not follow the default kendo.data.schemas.filemanager.
for example, rest api give file name field as "fileName" instead of "name".
Please let me know if there is a standard way to do this mapping.
Thanks
