Hello, I've placed a datepicker in the cells of a ReactDataGrid.
When I open the DatePicker and I try to select a month from the left column, the DatePicker popup closes instead of remaining open and changing the displayed month.
I've tried to define the date picker in the formatter property or in the editor property and the problem happens in both cases.
Is there a way to keep it open when choosing the month ?
Here is a Stackblitz reproducing the problem: https://stackblitz.com/edit/react-ts-nbsds1?file=App.tsx
Open a master row by clicking on the ">" symbol in the first column and then click on the DatePicker toggle button to show the popup.
Thanks in advance.
I have a Kendo Grid appearing in a modal successfully.
The filtering menus do not appear when clicking on the 3 dots in the column header.
It seems to be a layering issue. If I force change the z-index in dev tools the dropdown menu appears but then the filtering tools have issues. Has anyone else solved this problem?
Hi Team,
I upgraded my kendo from version 3 to version 5.12. Colummenu icon is not rendering after upgradtion. Is there any change made in latest version?.
renderColum = (props, column) => {
Const columndata = {};
columndata.field = column.field;
columndata.title = column.title;
columndata.columnMenu= (props)=>(
< ColumnMenu {...props} column={{...column, filter: column.fikter}}
)
}
<Grid{this.state.colums.map((column)=>{
return this.rendercolumn(props,column)
})}
>
Hi there,
I have a Kendo React Grid with several columns which have GridColumnCheckboxFilterMenu filters. If one column is filtered, is it possible for the remaining GridColumnCheckboxFilterMenu filter menus to only display available options given the first filter?
I am using Kendo React grid along with detail rows (expand functionality) which works well as per the example stated.
However i need to specify another explicit "Expand ALL" button that should open the detail view of all the rows in the result page.
I tried few attempts but facing issues while binding this new button state behavior with the "onExpandChange" and "onDataStatechange".
I am using pagination and filtering also in this grid. Can you please provide working example for this.