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
Hi,
if we configure the grid, that we are allowed to edit the cells, then in this case a single click puts the cell in edit mode. To prevent this, we can wrap the cell in a template with the 'k-grid-ignore-click' class. Is there any other way to prevent this? F. e. somehow in the codebehind? Btw. I can't find the css definition for 'k-grid-ignore-click', it seems like a hard-coded class name in the code.
Thanks.