Hello everyone, I currently have this graphic and I am trying to round the labels that are with a blue border so that they are more like the round buttons in the second image.
I have a grid with a selectionChange handler. Now I'm trying to add a double click handler to trigger some behavior when the user double clicks a row in the grid. The double click handler works fine when I double click on the already-selected row, but when I double click on a different row, the selectionChange handler is triggered and the double click event seems to be swallowed. Even when I turn on a dblClick event breakpoint in Chrome devtools, it's never hit when I double click on an unselected row.
What's the best way to have both a selectionChange handler and a double click handler on grid rows?
I am utilising the Kendo Uploader which is hitting a .net Frameworks api. The endpoint saves the file and then using the Telerik Doc library will open the uploaded spreadsheet and a validation begins where each row is validated against a set of rules. If any row fails to validate then details of the failure are recorded as a list. Once all rows have been checked the error list is returned as a json response. If the sheet validates without error the code will then save each row as a new record and return a json result confirming the number of records saved or if saving fails then an error as a json result.
I need to be able to process the json response on the client side via the onSuccess or onError events or some other way. Is this possible
Many Thanks
Hi team,
On the external filtering sample under the grid, I wanted a filter condition like the below :
(Product Name starts with 'c' And Product Name ends with 'i') OR Product Name is equal to 'Ikura'
Using this filter, I expected to get chai and ikura as filtered results. but the filter gave me zero results back.
Can you please tell me why this selection of filters gave no results back? Also, what filters do I need to use to accomplish my requirement of getting chai and ikura as my results?
I am attaching the screen capture of my selected filter options for your reference.
Regards,
Naresh Ravlani.
Hi ,
We are in to process to upgrade kendo UI for one of our angular project.
1. How to check which existing version is installed in angular project with NPM command.
2. How to install new version on below existing angular environment:
Angular CLI: 6.2.2
Node: 14.20.0
Angular: 6.1.7
regards,
Sachin Verma
Hi Kendo team,
Applying Zoom Css to kendo grid is misaligning the filter menu drop down. While Transform can be used instead but it is only changing the dimension of the grid .
is there any way to zoom in/out to show less or more columns in the kendo grid.
Hi,
I have this grid setup:
<kendo-grid
[kendoGridBinding]="rows"
[kendoGridInCellEditing]="createFormGroup"
[selectable]="selectableSettings"
kendoGridSelectBy
[(selectedKeys)]="selectedCells"
[navigable]="true"
>
If I hit enter, the focused cell steps into edit mode. How can I prevent it? I tried to register a keydown event handler and catch the enter key and simply return, but no luck.
Thanks