7,459 questions
0
votes
0
answers
14
views
How can I pass a function to a Kendo React v11.x Grid's custom cell prop?
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 ...
0
votes
1
answer
51
views
Kendo MultiColumnComboBox select event sometimes not triggered after item selection
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 ...
0
votes
1
answer
45
views
Kendo Grid issue with DateTime fields
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:
...
0
votes
0
answers
21
views
Kendo React PivotGrid – Row headers and values not staying in sync while scrolling after customization
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
...
0
votes
0
answers
42
views
set conditional tooltip on Kendo UI Grid column
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....
0
votes
1
answer
45
views
C# Kendo Grid - cascading combo box with pre-loaded values
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 ...
0
votes
0
answers
83
views
Kendo Grid Angular - Jump scrolling when adding / removing rows with virtual scrolling
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 ...
0
votes
0
answers
26
views
Kendo.js UID bug
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-...
1
vote
1
answer
55
views
Angular Kendo Custom DataBindingDirective Not Updating Grid after NotifyDataChange
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 ...
0
votes
0
answers
45
views
Unable to pass filters for kendo grid along with a parameter in ASP.NET MVC
I have my controller method as follows
[HttpGet]
public JsonResult GetClientAccount([DataSourceRequest] DataSourceRequest request, string partyId)
{
try
{
using (var client = GetWebClient(...
0
votes
0
answers
40
views
Kendo UI MVC Grid Column: Make Object Property Filterable, Editable, and Sortable
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 ...
0
votes
1
answer
46
views
How can I hide a column on a Kendo grid based on an input parameter?
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",
...
0
votes
0
answers
28
views
Kendo ASP.NET MVC - popup edit for table in child template
I have this ASP.NET MVC grid with popup editing:
@(Html.Kendo().Grid<CommentViewModel>
()
.Name("comments_" + Model.ParentID)
.Columns(columns =>
{ ...
0
votes
1
answer
114
views
How to show validation error in Kendo Grid for Multiple fields together
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 ...
0
votes
1
answer
56
views
How to set size of kendo grid editor popup
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-...
0
votes
1
answer
52
views
Change background color of selected row in Angular using kendo-grid
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"
...
1
vote
1
answer
157
views
Update kendo angular grid selected rows by (selectionChange) using custom service
I have a kendo-grid with a (selectionChange) attribute where I get my selection using a custom selectionService.ts:
(selectionChange)="selectionService.onSelectionChange($event)"
My ...
0
votes
0
answers
29
views
Add Filter on Specific Kendo Grid and Exporting it as Excel
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 ...
0
votes
1
answer
28
views
Kendo operators for Complex logic mix of <= or >= and combining
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 ...
0
votes
1
answer
29
views
kendo grid jquery displaying parent column as field instead of child columns in columnMenu
$("#grid").kendoGrid({
columns: [
{ field: "id", menu: true },
{ field: "name", menu: true, title: "Name",
columns: [
{ field: &...
0
votes
1
answer
59
views
Kendo UI Grid can't set dataSource page properly in the dataBound event?
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 ...
0
votes
1
answer
40
views
How to display kendo `kendoGridSelectAllCheckbox` in filter row?
Below code add select all checkbox in header row and works as expected:
<kendo-grid-checkbox-column [showSelectAll]="true">
<ng-template kendoGridHeaderTemplate&...
2
votes
1
answer
124
views
Angular content projection <ng-content> inside a KendoUI Grid
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 ...
1
vote
0
answers
99
views
Kendo UI Grid Not Displaying Items Per Page and Item Count in Header After Upgrade
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 ...
0
votes
0
answers
70
views
Typescript Convert String to Code Fragment
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 ...
1
vote
1
answer
138
views
kendo grid setOptions - how to handle breaking changes to grid schema?
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 ...
0
votes
1
answer
153
views
Angular 10 Kendo Grid Causing "Class constructor vA cannot be invoked without 'new'" Error
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: ...
0
votes
1
answer
42
views
Kendo Grid: customize drag hint when using rowReorderable
Is it possible to customize the row drag hint on a kendo grid when using rowReorderable?
0
votes
1
answer
44
views
Kendo MVC grid Command buttons Not Saving in setOptions
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/...
1
vote
0
answers
39
views
KendoUI jQuery grid column template with `values` field not works
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())
...
0
votes
1
answer
191
views
Kendo Grid not binding to data (using razor page)
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 ...
1
vote
1
answer
35
views
Kendo Angular and Deferrable 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 ...
1
vote
1
answer
43
views
Kendo Grid add and array of element to to a table with Javascript
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 ...
1
vote
0
answers
54
views
slide up table row each after one
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 ...
0
votes
1
answer
51
views
Kendo Column Menu -Custom filter for Date column
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 ...
0
votes
1
answer
90
views
Kendo Style Grid draggable Item similar to datatables
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 = $("#...
1
vote
0
answers
59
views
Vue.js Kendo UI TreeList with inline editable grid cell not working
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"' ...
0
votes
1
answer
204
views
How to display a DropDownList as a partial view inside an ASP.NET Core MVC Kendo Grid?
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 ...
1
vote
1
answer
78
views
Kendo ui jquery buttons are not visible inside kendoWindow
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&...
0
votes
0
answers
64
views
kendo-grid-checkbox-column in grid angular 17
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 ...
0
votes
1
answer
61
views
kendo ui confirm dialog box in jsp file jquery
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....
0
votes
1
answer
41
views
kendo grid - how to get deleted records in a grid?
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 ...
0
votes
0
answers
56
views
Open for edit next cell in the column after key press
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, ...
0
votes
1
answer
34
views
Selecting corresponding kendo row between two pages
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 ...
0
votes
1
answer
27
views
Kendo grid not getting displayed
I have a problem rendering a Kendo grid.
I have the below code:
$(document).ready(function() {
$('#searchBtn').click(function(event) {
event.preventDefault();
...
1
vote
0
answers
31
views
How to load data into Kendo grid using ajax call?
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 ...
0
votes
1
answer
189
views
KendoUI Angular 17 - NG0300: Multiple components match node with tagname button
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 ...
1
vote
0
answers
107
views
Kendo UI grid showing no records found when reloading it's previous grid state using setOptions
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 ...
0
votes
1
answer
128
views
How can I differentiate between Kendo UI (server) versus Kendo UI (client)?
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(&...
0
votes
0
answers
22
views
Implementing Active Filtering in Kendo Grid UI jQuery for Dist
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 ...