Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
14 views

I'm attempting to upgrade from Kendo React 10.x to 11.x but there is a ton of breaking changes to the Grid component. We have a lot of custom Grid cells that use the function prop syntax. The syntax ...
Ryan's user avatar
  • 7,997
0 votes
1 answer
51 views

I’m having an issue with Kendo MultiColumnComboBox where the select event is not fired from time to time. Component: Kendo jQuery MultiColumnComboBox Option: serverFiltering: true Symptom: After ...
guli5057's user avatar
0 votes
1 answer
45 views

I was asked to add some fields to a working Razor page using a Kendo grid with inline editing. Two of those fields were DateTime type. I added the fields to the model. Example: ...
jrichview's user avatar
  • 388
0 votes
0 answers
21 views

I’m using the KendoReact library to render a Pivot Table (PivotGrid) in my React project.I’ve customized the Pivot Table’s styles and layout according to my requirements. Table is presnt On Two pages ...
Megha's user avatar
  • 1
0 votes
0 answers
42 views

The conditional tooltip is not working on kendo UI Grid column. The following code is not applying the condition for title and instead showing the whole text '#= (!IsSynced && !AddressNickname....
user1263981's user avatar
  • 3,157
0 votes
1 answer
45 views

I have a .NET MVC app where I'm using Kendo grid. I have a form that a user can fill out and save it as a draft, then come back later and finish it. When I go to edit the form I saved as a draft, I ...
SendETHToThisAddress's user avatar
0 votes
0 answers
83 views

I have 2 Kendo Grids in my Angular application. In the 1st one, I use "virtual scrolling" because we have a lot of data (e.g. 10K records). The 2nd one is a "basic" Kendo Grid. The ...
kkaragki's user avatar
  • 150
0 votes
0 answers
26 views

I have a bug in my UI where when using UID as name of the column, the value changes from string to a random guid which is taken from data-uid: UID looks like this: uid: 8f7e2416-df36-4f52-a1ab-...
vidhi patel's user avatar
1 vote
1 answer
55 views

I have written a custom Kendo Grid databinding directive that allows me to pass in a service method to be called by rebind(). Effectively, the component using the Kendo grid is responsible for passing ...
Jason's user avatar
  • 4,197
0 votes
0 answers
45 views

I have my controller method as follows [HttpGet] public JsonResult GetClientAccount([DataSourceRequest] DataSourceRequest request, string partyId) { try { using (var client = GetWebClient(...
Developer's user avatar
  • 8,697
0 votes
0 answers
40 views

I am using Kendo UI MVC in a .NET application and have a grid where one of the columns is bound to an object property. The column should be filterable, editable, and sortable. The column is bound to ...
Monal's user avatar
  • 25
0 votes
1 answer
46 views

I want to hide this column from a Kendo grid when the set the reportType input parameter to NTR. How can I do that? { field: "SrNo", title: "Grounds of Suspicion", ...
user30021044's user avatar
0 votes
0 answers
28 views

I have this ASP.NET MVC grid with popup editing: @(Html.Kendo().Grid<CommentViewModel> () .Name("comments_" + Model.ParentID) .Columns(columns => { ...
maX's user avatar
  • 753
0 votes
1 answer
114 views

I have an ASP.NET Core 6 MVC web application and I am using Kendo UI (Grid) to show data in a grid format. This is an editable grid and also added multiple validations to each and every column ...
martian481's user avatar
0 votes
1 answer
56 views

I have defined a template for a kendo grid popup editor. Note: I need to use TagHelper not HtmlHelper <editable mode="popup" template-id="popup-editor"> <editable-...
Edney Holder's user avatar
  • 1,240
0 votes
1 answer
52 views

I want to change the background color of the row in my kendo-grid whenever I select it. Currently, my HTML code looks something like this: <kendo-grid id="kendoGridId" ...
user29759359's user avatar
1 vote
1 answer
157 views

I have a kendo-grid with a (selectionChange) attribute where I get my selection using a custom selectionService.ts: (selectionChange)="selectionService.onSelectionChange($event)" My ...
B.Quaink's user avatar
  • 586
0 votes
0 answers
29 views

I have a Kendo Grid where I have the option to export the Data in .xlxs file. I want to add .filterable(true) for a specific column SortDate but current code adds filter on all column names <div ...
Shahood Amir's user avatar
0 votes
1 answer
28 views

Our application is using Kendo for UI, for fetching Data from backend it is using filter operators. now I want to fetch data with complex filter as in the below code, I want to filter for the DueDate ...
AbdulAleem's user avatar
0 votes
1 answer
29 views

$("#grid").kendoGrid({ columns: [ { field: "id", menu: true }, { field: "name", menu: true, title: "Name", columns: [ { field: &...
Kalaivani N's user avatar
0 votes
1 answer
59 views

I am trying to change the page of a Kendo UI Grid control programmatically but just can't seem to make it fully work via dataBound event that is suggested as an alternative for setting the page when ...
GI1's user avatar
  • 126
0 votes
1 answer
40 views

Below code add select all checkbox in header row and works as expected: <kendo-grid-checkbox-column [showSelectAll]="true"> <ng-template kendoGridHeaderTemplate&...
Kaishu's user avatar
  • 301
2 votes
1 answer
124 views

I am attempting to standardize a lot of my grids for my application. They all follow the same general set up for filtering, sorting, etc. But each grid might have some specific customizations. Usually ...
blitzmann's user avatar
  • 8,013
1 vote
0 answers
99 views

I recently upgraded Kendo UI in my project, and I'm experiencing an issue with the grid. The "items per page" dropdown and the "total item count" (e.g., 1-20 of 74 items) in the ...
Abhishek Sharma's user avatar
0 votes
0 answers
70 views

I'm working with Vaadin 24 and Kendo React, working to bring these together. I'd like to use the Kendo React webcomponents inside of Vaadin. So far, I've had excellent results with this, insofar as my ...
Curtis Snowden's user avatar
1 vote
1 answer
138 views

I have a ASP.NET MVC Kendo Grid with possibility to save column order and visibility, similar to this example Grid options are persisted to database. Existing options reference specific column which I ...
Yehor Androsov's user avatar
0 votes
1 answer
153 views

I'm trying to implement a Kendo Grid in my Angular application, but I'm encountering the following error when the Kendo Grid component is enabled: vendor.4add67dadae0cd9152b9.js:16 ERROR Error: ...
Its_me_Jithu's user avatar
0 votes
1 answer
42 views

Is it possible to customize the row drag hint on a kendo grid when using rowReorderable?
Tony BenBrahim's user avatar
0 votes
1 answer
44 views

I have a Kendo MVC grid that uses Command Buttons. These buttons use the .Visible function to call a JS function that returns true/false to determine if it is visible. I am also using getOptions/...
DevilDog's user avatar
  • 421
1 vote
0 answers
39 views

I have defined following jQuery datagrid column. Users is assoc array of text and value fields. Column is correctly displaying users's fullname from values field. (new Kendo\UI\GridColumn()) ...
klaucode's user avatar
  • 340
0 votes
1 answer
191 views

New to Telerik Kendo and running into a stupid scenario but has been driving me nuts. No matter what I do the kendo grid doesnt populate data at all. below is the Razor page that displays testdata in ...
Desichele's user avatar
  • 399
1 vote
1 answer
35 views

Does Kendo for Angular support the @defer syntax introduced in recent Angular releases? In my production build my main.js build is 2.1mb (and in dev builds, vendor.js is 12.1mb). And I am on a slow ...
Jason's user avatar
  • 4,197
1 vote
1 answer
43 views

I have a form to add admin user to a site. Multiple users can be added at once. OnSuccess, I need to append the users to a Kendo Grid (Table). How can I append all three users when the AJAX response ...
esoteric's user avatar
  • 125
1 vote
0 answers
54 views

currently I'm working on a grid with group rows (on top). If the user clicks on the first cell of the group row (a - sign) the details rows should slide up with animation. I found this answer, and ...
derstauner's user avatar
  • 1,958
0 votes
1 answer
51 views

I've been using a kendo grid ,where we have made some enhancements for grid.We have set columnMenu to true in which Filter option will be shown as one of the menu. So when I click filter a multi ...
Jyothika K's user avatar
0 votes
1 answer
90 views

I ready like the style that datatables is using for row order but I have the Kendo grid and wanted to see if I can style is similar to the blue bolder. Any help would be great. let grid = $("#...
Jefferson's user avatar
  • 121
1 vote
0 answers
59 views

I'm working on integation a vue.js appliaction with kendo UI treelist component,Where each grid cell inside the treelist should be ediatble inlibe however setting up the 'editable="Inlie"' ...
Sunil Kumar's user avatar
0 votes
1 answer
204 views

I want to display a dropdown in an ASP.NET Core Kendo Grid. In "CarsViewModel", I already have the values ​​that need to be displayed as a dropdown, so I don't need to make an Ajax call to ...
HereToLearn_'s user avatar
  • 1,170
1 vote
1 answer
78 views

I am creating a popup window when user clicks on a button. The kendoWindow should contains ok and button. $("#dialog").kendoWindow({ width: "300px", height : "300px&...
Adil's user avatar
  • 29
0 votes
0 answers
64 views

i want multiple checkbox in grid (kendo UI) I have common grid This is my code from common-grid component. look like that [![enter image description here][1]][1] i want checkbox button for both ...
Arjun Dhilod's user avatar
0 votes
1 answer
61 views

I have a jsp file. I need to add confirm dialog box when user clicks on delete button currently script has simple confirm, but i want kendo ui confirm box. I am not sure how confirm box is in jsp file....
Adil's user avatar
  • 29
0 votes
1 answer
41 views

I am using kendo 2022 version and I want to know is there any handy function that gives the deleted records in a grid. There was datasource.getDestroyed() function, but it seems it's not supported ...
A DEv's user avatar
  • 339
0 votes
0 answers
56 views

Can you give me a hint, please? After editing a cell and pressing enter, how can I automatically move to the next cell of the selected column end open it for edit? I thought I could do it like this, ...
Artyom Shmarlovsky's user avatar
0 votes
1 answer
34 views

I have a Kendo grid on a dashboard page which when a row in the grid is selected, needs to load that same row in a kendo grid on a different ticket page to display that ticket information. Here is the ...
Owen's user avatar
  • 11
0 votes
1 answer
27 views

I have a problem rendering a Kendo grid. I have the below code: $(document).ready(function() { $('#searchBtn').click(function(event) { event.preventDefault(); ...
Hisham Gundagi's user avatar
1 vote
0 answers
31 views

I am creating a spring boot application to book flights. I have defined a controller to retrieve flight details from database: @Controller @RequestMapping("/home") public class ...
Hisham Gundagi's user avatar
0 votes
1 answer
189 views

I have different component where I'm using a KendoUI Angular Grid with delete buttons in the command-column: <kendo-grid-command-column [width]="40"> <ng-template ...
ZotNet's user avatar
  • 109
1 vote
0 answers
107 views

Our project has a Kendo grid where the grid databound event saves the grid state for a particular user at any give time when user applies filter or makes any changes to grid view. Kendo grid structure ...
Mahesh Varma's user avatar
0 votes
1 answer
128 views

I am using ASP.Net Core 6. I am forced to use Kendo UI to build tables (Grid). There are 2 "flavors" of Kendo UI: What I call "Server": @(Html.Kendo().Grid<Model>().Name(&...
Spencer Sullivan's user avatar
0 votes
0 answers
22 views

Current Behavior: Currently, although our filtered results are displayed based on each column's filter, the active filters still show the entire list of items in that column, regardless of whether ...
Faizan Ali's user avatar

1
2 3 4 5
150