I copied the sample code at Customizing the Selection to build my first multi-select grid with checkboxes. After I added a button with a handler to log selectedState I see that it contains an object:
{
Apologies for the naive question, but how does this help me process the selected rows? Are there JS techniques for putting this content in an array? Is there some way to filter an object?
I need to get an array of selected rows to move my project forward. I'm just not clear how to take the default state and use it.
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.