Hi,
On most examples on telerik site there is a menu to switch between themes but I didn't managed to find some examples on how to actually implement it?
Any help ?
Thanks,
Arnaud.
Do we have any sample or blog for using KendoReact with Recoil.js? I already found one blog post but it never shows the using it with any KendoReact.
https://www.telerik.com/blogs/recoil-in-react
Hi all
probably I'm doing something completely wrong :-) I try to put a custom date format on one of my Grid columns, with the following
<GridColumn field=
'Updated'
filter={
'date'
} format=
"{0: yyyy-MM-dd HH:mm:ss}"
width={
'120px'
}/>
No matter what format I'm trying to put into the spec, the date always shows in my browser locale, e.g. Is there something else I must configure?
Hi,
I followed your toc-single-row-navigation example. Here is my grid https://stackblitz.com/edit/react-njk8q2?file=app/main.jsx and problem is that when are data filtered then arrows are moving row selection but also the page. Any suggestion how to prevent the page scroll?
Hi,
I would like to display a context menu (similar to https://www.telerik.com/kendo-react-ui/components/layout/menu/context-menu/) when I right click on an item in a TreeView (https://www.telerik.com/kendo-react-ui/components/treeview/). The context menu should be aware of the relevant TreeViewItem that was right clicked on e.g. so I can perform an edit or delete. Is this possible?
Thanks,
Grant
hi
how to Using kendo components in the kendo window component
When I use the following code, it does not show information to me
const plantList = [{ text: "Small", id: 1 },{ text: "Medium", id: 2 },{ text: "Large", id: 3 }];
<
Window
title
=
"Formula"
onClose={handleReturn}
initialHeight={400}
resizable={false}
maximizeButton={() => null}
>
<
ComboBox
data={plantList}
textField
=
"text"
filterable={true}
onFilterChange={filterChange}
/>
</
Window
>
Hi,
i was following the odata server operation example ( https://www.telerik.com/kendo-react-ui/components/grid/data-operations/odata-server-operations/) and i see that the filters in that grid example returns data ignoring case. e.g contains -> 'car' will return 'Carl'
But in my project its not doing the same, its returning data based on case e.g contains -> 'car' will return nothing but contains -> 'Car' will return 'Carl'.
Our api is made in .net core API upon which Odata is implemented, so we tried (https://github.com/OData/WebApi/issues/812) this but since we are not implementing Odata directly that solution cannot be done.
Can you guys let me know how the backend of your server example is working so that i can have a look as to how it is returning data ignoring case, cause i dont see any toLower() method in your Filter object.
And is there any easy way to implement it, so that i dont have to manually add toLower() method to Filter object everytime there is a Datastate change.
Please let me know!! Thanks in Advance.
I want to have a drop-down inside each row in kendo-grid react. Please find an attachments for the reference and provide me the appropriate solution.
Thank You !