Hi.
I have created a grid with editing as described in your example here:
https://www.telerik.com/kendo-react-ui/components/grid/editing/editing-custom/
The issue I have now is that I also have row selection enabled for the grid with a checkbox as described in this example:
https://www.telerik.com/kendo-react-ui/components/grid/selection/
My issue is now, that when the edit dialog opens for any field, and I click in a field to edit the value, the checkbox for the row selection gets activated. So the question is: How can avoid to activate the row selection when a row is in Edit mode?
I have a requirement where when I am editing in the cell and hit enter the cell focus should be shifted to the down cell just like the MS Excel does.
Does Tree list support it?
Many thanks

Hi,
I wanted to disable the checkbox based on it's value. Is there a proper way of disabling it?
I'm using the sample code on this page https://www.telerik.com/kendo-react-ui/components/grid/selection/#toc-customizing-the-selection
Thanks!
I have a requirement where I want to shift focus from one cell to another when a user hits the tab button.
Is there a built-in functionality in the Tree list OR any customization that needs to be done?
Many thanks
Hello
Is it possible somehow to make a border between dates a bit bigger?
Because for not it is difficult to distinguish different dates in the timeline view
I found an issue:
if an event is not visible if start date outside of working hours range and end date is outside of working hours:
the code was taken from scheduler demo:
https://react-yxcnuz.stackblitz.io/
As you can see the start of event is outside of working hours and end date is outside of working hours for next date.
In case I see only working hours I do not see event at all
In case I enabled all day hours I do see event
Hello, i'm trying to use kendo react pdf for my chrome extension, im using :
"@progress/kendo-drawing": "^1.16.3",
"@progress/kendo-licensing": "^1.2.2",
"@progress/kendo-react-pdf": "^5.2.0",
When i try to export like this:
const PDFtester = () => {
const pdfExportComponent = React.useRef(null);
const exportPDFWithComponent = () => {
if (pdfExportComponent.current) {
pdfExportComponent.current.save();
}
};
return (
<div>
<div style={styles.switchButton}>
<div className="setting-button justify-content-center">
<input onClick={exportPDFWithComponent} id="check-light-dark" className="ml-2"
type="button" value="Download stats" style={styles.font4}/>
</div>
</div>
<div style={stylesHide.visuallyhidden}>
<PDFExport
ref={pdfExportComponent}
paperSize="A4"
fileName="Narval Report"
title="Narval Report"
>
<img src={ReactLogo} style={styles.img}/>
<h2 style={styles.font}>
Narval
</h2>
</PDFExport>
</div>
</div>
)
}
All the metadata of my saved document is weird characters: "þÿ"
i dont know why... so is u have a solution..
I would like to be able to pass props other than view to custom toolbar components. Here is an example of a custom title tip I would like to add to the button. Any idea how I would do something like this?
https://stackblitz.com/edit/react-nmy4tg?file=app/backgroundColorTool.jsx
Is it possible to add the character counter or do some kind of character count with the React Editor?
