
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.

I have a graph where the Y axis is logarithmic, from 10^1 down to 10^-4. Right now the labels on the axis read from 10 to 0.0001 (though really it's 0.00009999 repeating, not good), and I'd like it to read as 10 to the power of x. How can I format my labels to do that? Or at the very least, fix the last label so it doesn't look like the screenshot...
I am facing issue with using both Kendo UI for Angular and Angular Material together.
Facing below build errors if both the packages are installed.
<kendo-grid> is not a known element.
Filterable is not a known element.
Angular/cli version - 14.2.0
Kendo version - 11.1.0
Angular material version - 8.2.3
Kendo and Material are working fine separately.
I have kendo dropdown list getting data from list like text and value
When I load the page I need to set the dropdown value
<kendo-dropdownlist [data]="item.listAnswerOptions" id="Q{{item.QuestionId}}" [valuePrimitive]="true" textField="text" valueField="value" [(ngModel)]="item.EncAnswerOption"> </kendo-dropdownlist>
where In
[(ngModel)]="item.EncAnswerOption">
item.EncAnswerOption has value to be set

I have a kendo grid that contains data that comes from a DB call.
Currently the export excel button extracts all the data equal to the datasource.
It is mapped into java.
I would like that when compiling the filters of the kendo grid when I click on the button it extracts only the filtered data
<kendo-grid
[data]="gridData"
[pageSize]="state.take"
[skip]="state.skip"
[sort]="state.sort"
[filter]="state.filter"
[sortable]="true"
[pageable]="true"
[filterable]="true"
[selectable]="true"
[style.minHeight.px]="minMaxHeight"
[style.maxHeight.px]="minMaxHeight"
(dataStateChange)="dataStateChange($event)">
<kendo-grid-column field="name" title="{{'name' | translate}}"></kendo-grid-column>
<kendo-grid-column field="month" title="{{'month' | translate}}"></kendo-grid-column>
</kendo-grid>