As per the heading, all the demos on the KendoReact MultiColumnComboBox have a lot of hardcoded data which results in a scrollbar being rendered in the popup. If you only have a few items, then no scrollbar is rendered and the column headers are misaligned with the data rows:
https://stackblitz.com/edit/react-gwftb5?file=app%2Fmain.tsx
Kind regards,
David
As per the question, the documentation mentions nothing about the data types you can show in MultiColumnComboBox columns. If you modify any of the examples in the component documentation to include a Date field, the component blows up when you expand the ComboBox:
https://stackblitz.com/edit/react-biiakp?file=app%2Fmain.tsx
Is this a bug, or should the documentation state that you must format all data to primitive types for use in a MultiColumnComboBox?
Kind regards,
David
Hi Team,
I have rendered the Kendo react grid component with template in below cases.
As per the react behavior, first case will remount for each state update and second case will not remount.
In Kendo, first case is working properly as per react behavior. But for second case the Kendo component is having re-mounting issues while state update of template.
I have attached a sample for reference below.
Kindly share suggestion to avoid full remounting of template while state updates.
Regards,
SuriyaKumar
Hi, I am new to using the component library. I would like to export checkbox selected rows to excel through the Datagrid component.
Here is the code that I am using,
Hi,
As the title, the seleted DrawerItem is not visible in windows high contrast theme.
I selected the last menu (Favourites) and there is nothing to indicate that.
Is there any plan to add some indicator?
Thanks!
Hi,
I am using kendo React in my project. When I am doing grouping on grid and exporting as excel, grouping is not applied in Excel and is download with flat table.
I am sending grouped array in group property of ExcelExport butgrouping is not happening in export to excel.
<ExcelExport group = {group}>
</Excel Export>
Please let me know is it the expected behaviour for excel or is it an issue.
Thanks
Hi,
How to hide the grouped columns automatically in grid? After a column is grouped (by dragging and dropped into the drag and drop area), I want to hide the columns that have been grouped. See the attached screenshot.
My current approach is to set the column width to zero, resizable to false, minResizableWidth to zero. It works fine so far, but it feels like a hack.
Thanks,
Jie
We are currently working on an app consisting of micro frontends using both React and Angular modules. We use Kendo for both but there's an inconsistency between the Angular and React app when it comes to the TimePicker component. In the Angular version, if the user completes the first section of the TimePicker where we have hours:minutes, after entering 2 characters for the hour field it automatically jumps to the next section without having to press the arrow button. In the React component, once the user completes the first 2 characters for the hours section, the focus doesn't switch to minutes until the user presses the arrow button to manually navigate there.
Is there any possibility to obtain the same functionality for React where the focus automatically changes?
So far I tried both using the reference of the TimePicker component to obtain this behavior and also the solution suggested for the JQuery version where it's recommended to use event listeners and simulate the button press with a dispatched event but none seemed to work.
Hi,
I am currently facing a challenge with implementing dynamic grid columns with custom cells, along with column lock functionality. I have attempted to address this issue by creating a separate file for the grid configuration, where I define all the column properties and provide template names.
Here is an excerpt from my "gridConfig.tsx" file:
let CommandCell = (props: GridCellProps) => <MyCommandCell {...props} deleteData={deleteData} edit={enterEdit} remove={remove} add={add} discard={discard} update={update} newId={newId} cancel={cancel} editField={editField} />
let CommandCell1 = (props: GridCellProps) => <DropDownConnection {...props} alldata1={dropDownDataConnection} keyField="id" textField="connectionName"/>
const columnDefinitions = [{
field: SELECTED_FIELD,
title: "",
width: "50px",
filterable: false,
headerSelectionValue:
data.findIndex((item) => !selectedState[idGetter(item)]) === -1,
selected: false,
show: true,
},
{
field: "id",
title: "ID",
filter: "numeric",
width: "200px",
template: ColumnMenuCheckboxFilter,
editable: false,
selected: false,
show: false,
},
{
field: "tenantId",
title: "Tenant Id",
filter: "numeric",
width: "200px",
template: ColumnMenuCheckboxFilter,
editable: false,
selected: false,
show: false,
},
{
field: "connectionId",
title: "Connection Id",
filter: "text",
width: "200px",
template: ColumnMenuCheckboxFilter,
editable: false,
cell: CommandCell1,
selected: false,
show: true,
}]
In the "GridComponent.tsx" file, I have utilized the column definitions as follows:
The issue I am encountering is related to passing props, as I am unable to include component code directly within the grid configuration. Could you please assist me in finding a solution to this problem?
Thank you very much in advance for your kind support!