In attempting to implement two TimelineViews within the Scheduler, I noticed that only the first one was accessible, and both appeared to be selected.
Is there any workaround to handle multiple TimelineViews (or rather, any views of the same type)?
Demo: https://stackblitz.com/edit/react-xd5epq?file=app%2Fmain.jsx

Hello,
We are using Kendo react PDF in our project. Currently we are experiencing PDF word breakage. In our downloaded PDF document, many elements are getting break/wrapped in financials section. We think this is an issue from the telerik side. Can you suggest/provide any solutions for this?
Regards,
Pratap
Hi all,
Please refer to this sample: https://stackblitz.com/edit/react-gfiaun?file=app/main.tsx
I am facing an issue whereby the controlled component does not update accordingly if the props are passed in via Field Prop.
In Field test1, the controlled component works as intended.
In Field test2, the controlled component does not work as expected, even though onHandleChange2 is still being executed and the value is still been set as seen in console.
I would like your advice on why this happens. Thank you!
I'm trying to prevent headerGroup rows from rendering based on certain conditions.
When I try to utilize rowRender for this purpose, I can't make it work because it controls only the render of cells within the row. Returning null and <td></td> don't work (the row still renders but with nothing in it or with empty cells).
Is there any way I can target the row instead of the cells? I would even take being able to simply add a class to the row to hide it from the user with CSS.
I can't target the row with the row:empty CSS selector because the groupHeader rows come with k-group-cell cells already rendered before the renderRow even starts rendering custom cells.
Did I overlook anything that Kendo offers? Thank you!

Hi there,
Im trying to use custom headers, but column menus doesnt show, theres an exemple
https://stackblitz.com/edit/react-egavx9?file=app/main.jsx
In older version (4.8.0) for exemplo this work perfectly, an exemple here :
https://stackblitz.com/edit/react-egavx9-xur51f?file=app/main.jsx
Is it a bug?, or there are new way to do this ?
best regards,
Gabriel.

After looking through all of the Scheduler documentation, every example shows the time slots being displayed vertically.
The only horizontal orientation appears to be when grouping, but is only on those grouped fields.
Is it possible to attain something like the picture attached?

import { provider, useInstance } from 'react-ioc';
import { observer } from 'mobx-react-lite';
import { Grid, GridColumn } from '@progress/kendo-react-grid';
import Store from './store';
const CustomDataGridColumn = observer(() => {
const store = useInstance(Store);
return <GridColumn title={`Title (${store.counter})`} />;
});
const CustomDataGrid = observer(({children}) => {
const store = useInstance(Store);
return (
<Grid data={store.data}>
{children}
</Grid>
);
});
const App = provider(Store)(() => (
<CustomDataGrid>
<CustomDataGridColumn />
</CustomDataGrid>
));


Hello, I have a problem when using DatePicker in the dialog. In the small height screen devices, the DatePicker does not show fully. Please help me if you know how to fix it, thanks!