Is it possible to disable a certain keyboard-navigation event?
I don't want the user to automatically select the first suggestion when pressing enter.
I was looking at the Autocomplete src code and found `onNavigate(state: AutoCompleteInternalState, keyCode: number): void;`. How do i use this?
Is there a way to disable it or maybe a work around to override the "enter" event?
Hi Team,
I have implemented master grid using this example: https://www.telerik.com/kendo-react-ui/components/grid/rows/hierarchy/
all works fine as expected. Now, i wanted achieve functionality of expand and collapse of all rows on click of a button. may i know how to achieve and do you have any specific example?
Regards,
M.Seenuvasan
Hi
when adding this to a Grid, the "sticky" text doesnt dissapear after resizing.
This happens only when trying to resize.
resizable={true}
reorderable={true}
onColumnReorder={(e) => {
this.setState({
...this.state,
cols: e.columns,
});
}}
onColumnResize={(e) => {
if (e.end) {
this.setState({
...this.state,
cols: e.columns,
});
}
}}
As you can see the title "Name" is still there even thou I am done with my resize.
To make it dissapear, I need to click anywhere on the page
This only happens when you are using both onresize and onreorder.
Hello,
I have been working on implementing grid cell selection into some kendo react grids which are currently using custom cells for every cell and I have not been able to figure out how to implement the onSelectionChange event handling for the custom cells. I have looked for examples and forum posts about it, but so far haven't been able to find anything using custom cells (which appear to behave differently and don't want to handle the onSelectionChange event when clicked).
Here is a sample I have put together of what I am trying to do, but so far have had no luck with: https://stackblitz.com/edit/react-ts-gj4rce?file=index.tsx
Any feedback or help with this would be great!
Thanks,
Andrew
Can a ChatMessage be set to display the time next to the message without it being clicked on?
I have created a custom chat message, but only shows the time when you click the message.
Hello, I am currently trying to obtain the base64 string of the PDF without sending it to a proxy, is there a way to achieve this?
Hi.
My question is. Is it possible to enable property 'sortable' together with the custom property 'headerCell' on the grid column? Because it doesn't work for me. Template for column header is ok, but sorting does not work - icons are not visible (k-icon k-i-sort-asc-sm / k-icon k-i-sort-desc-sm) and does not sort. But sorting through the column menu works.Hi I wonder if it is possible and how to control the position of the popup filter menu I want something like this for all the columns
for every column menu filter the pop up will open to the left starting from the filter icon position
I have to restrict the resize of column after some width like minresizablewidth, is there any solution around.
When i resize the column of a grid, I do not want to see the right side of the grid fall off the screen.
I want to stop the resize of the description column when grid reaches the full width.