I am seeing some weird behavior when it comes to resizing locked columns in the grid. Can you confirm that it is supported, if so there seems to be a bug. Try make the name column smaller or larger... different behaviors exist for both cases (see gif).
https://stackblitz.com/edit/react-b8behq-efiban?file=app/main.jsx
There is a feature in Month View where a day with many appointments will display an ellipsis ("...") at the bottom, indicating to the user that the day in question has more events scheduled than are listed on the screen. Does Week View have a feature similar to this?
My users will sometimes display busy schedules with many appointments listed, and I would rather display "..." than the first character of each appointment as the component tries to mash all the appointments into the same box.
This thread references the feature I'm referring to in Month View:
https://www.telerik.com/forums/react-scheduler-render-more-events-in-month-view
As does this GitHub Issue:
Do we have any way show checkbox enabled or disabled in React Kendo grid when using the below selected field.
<Column
field="selected"
width="75px"
filterable={false}
headerSelectionValue={
data.findIndex(dataItem => dataItem.selected === false) === -1
}
We'd like to have a side toolbar of dashboard widgets and drag and drop those widgets onto the TileLayout. Is that possible at all, is there a way to drag and drop 'in' to the TileLayout?
The grid scrollbar works nicely when the data is prepopulated however when filling the data from an event the scroll bar does not work.
Here, from the documentation, the scrollbar works as intended:
https://stackblitz.com/edit/react-el8uiz?file=app/main.jsx
(via https://www.telerik.com/kendo-react-ui/components/grid/scroll-modes/virtual/)
However, when filling the grid on an event the scroll functionality is lost:
https://stackblitz.com/edit/react-q2gnbn-yd3gsj?file=app/main.jsx
Is there something I am missing here when populating the data via an event? I am not necessarily concerned with virtual scrolling, this also happens without virtual.
I have looked at the examples given here https://www.telerik.com/kendo-react-ui/components/layout/drawer/custom_rendering/
Howerver as far as I can see this changes all items to have the same custom rendering. Would it be possible to have item specific renderings apart from the general custom rendering for all items?
Hello all,
I have a simple grid with a default sort defined on the redux store. It works perfectly fine on load but when I try to change de the sortdirection by clicking on the arrow, the eventHandler onSortChange catch an empty array instead of the current sort.
you can see it on the 3 files attached.
Any id why the e.sort array is empty ?
Thank you.
Hello Team,
Actually I want to create dark theme configuration for kendo react by overriding the classnames globally using scss. Suppose below is kendoDark.scss file where I am overriding input text box with background grey color.
@import "~@progress/kendo-theme-bootstrap/dist/all.scss";
.k-input {
background:grey !important;
color: $text-high-emphasis__dt;
}
So In App.js file I have state of dark or light theme like const darkMode = useSelector((state) => state.darkMode);
My problem is I am unable to import this kendoDark.scss file if it is dark theme.
Can you please share me any example.Please help me here.