Hi,
We would like to export a repeatable header and footer with information when exporting the data of a KendoReact Grid to Excel. In the Excel Export API only information about footer, group footer and group header can be found, but they don't do what we want them to do. The only thing I could find here was this URL, but it also doesn't have a solution for our requirement: https://www.telerik.com/kendo-react-ui/components/knowledge-base/excel-export-with-custom-header-footer/
What we want can be inserted into Excel using Insert and then the Header and Footer button and will render a repeating header and footer for an entire page. You can see that in the attached screenshots.
Is there a way to insert such a repeating header and footer? If not, are there any plans for the future or can you add this as a feature request?
Regards,
Oliver
After the latest accessibility improvements available with R1 2023 of the KendoReact library, the aria-required attribute is missing in most of the DropDowns.
The aria-required attribute should be rendered in the DOM once the MultiSelect definition contains a required attribute like this:
<MultiSelect required data={sports} onChange={onChange} value={value} />
When using the NumericTextBox, the default setting is to allow 3 decimals.
If I add the line format="n4", I'll get all decimal numbers filled with zeroes as soon as I enter some data.
It would be great if you could add for example "n12" to the line format, so the user can enter up to 12 decimals, but without adding 12 zeroes as soon as some data is entered.
Recently we came up with a workaround for expanding the defaultRowAxes by creating a string value (by concatenating previous tag value with ‘&’ + tag value + next tag along with expand: true property and so on). This approach is not ideal because we have a lot of data and we use the pivotProps values returned from ‘usePivotLocalDataService’ hook as sometimes we can have more than 5 nested tags in a row and we update our config based upon the return values from configuratorProps returned from the same hook (usePivotLocalDataService) so we can save the values in our database later.
We need a solution where we can pass in a prop (eg: expandRows) either to the usePivotLocalDataService hook or the PivotGrid component itself that will expand the rows by default whenever we click the “Apply” button in the Configurator component.
Telerik Dojo example: https://www.telerik.com/kendo-react-ui/components/pivotgrid/data-binding/local-binding/
In the above mentioned example and the screen recording attached (expand-defaultRowAxes.mov) you can see when we click apply -> defaultRowAxes are added but they are collapsed. So we need a solution where in we can pass a prop to the component / hook for expanding defaultRowAxes whenever we click on “Apply” button.
Currently the GridColumn Component only supports width property. It should also support minWidth and maxWidth properties for better responsive design. https://www.telerik.com/kendo-react-ui/components/grid/api/GridColumnProps/
I've noticed in your other products, the dropdownlists have a property that allows for grouping sets of data.
What would it take to get that included in Kendo UI React?
We have a use case that this would be very helpful.
Thanks.
Add support for complex object array filter of DataSourceRequest.
let dataSourceRequestFilterComplexObjectArray = {
filter: {
logic: "and",
filters: [
{
field: "users[name]", // OR with dot notation -> "users[someObject].name"
operator: "eq",
value: "Bill"
}
]
}
};
Currently (as visible in grid demos), touch drag scroll in mobile (responsive) mode is not working when rows selection is enabled.
There is no known workaround since the complexity of implementing custom row renderer with all the intricacies of the grid's behaviour would be a huge task.
The client's facing issue is that when using a KendoReact grid on mobile device, they can't easily scroll the grid rows data by touch drag scrolling the rows.
Hello,
is it possible to do reorder/drag and grop grid rows with the keyboard? It doesn't look this is set up but I wanted to check if it is (or if it's something you will be adding at some point).
https://www.telerik.com/kendo-react-ui/components/grid/rows/row-reordering/#toc-kendoreact-dragdrop
Thanks,
Rebecca
Hello,
we have a probelm with the current bar chart control in react.
We need a multi grouping on the x axis like in Excel and tried a lot but couldn't find any solution yet.
The following image shows how we would like to implement. The x-axis is grouped by two attributes (Age, Gender) .
Is there any possiblity to do this due fusioncharts support it a bit more as your controls ?
Kind regards, Volker
It would be great if there was the ability to lock the expand/collapse column that is rendered for master/detail grids.
Steps to reproduce:
Expected result: The text in the notification is read by the screen reader when the notification appears
Actual result: The notification text is not read out
Is it possible to use a custom border radius for individual bars of a stacked bar chart?
According to the Docs, it looks like we are limited to: color, dashType and width but was wondering if I am missing something or there is another way?
https://www.telerik.com/kendo-react-ui/components/charts/api/Border/
Thank you!
How to reproduce (video attached):
1) open combobox
2) scroll to end of the item list
3) select last item 4999
4) open combobox again
Expected behavior: I would like to see the item list.
Actual behavoir: I see white area.
https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/virtualization/#toc-basic-configuration
https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/virtualization/#toc-basic-configuration
https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/virtualization/#toc-basic-configuration
Hello,
There is a very serious bug in the Kendo React date picker component: the month of January is simply not displayed
The issue can be witnessed on your demo page:
https://www.telerik.com/kendo-react-ui/components/dateinputs/datepicker/
Just open the picker and you'll see January is not there
Hello,
we are using kendo-react-pdf and I am trying to see if it can generate tagged PDFs to make it accessible. Or can you tell me if there is another kendo pdf component that is capabable of creating these tags?
thanks so much,
Rebecca
I want the kendo tooltip should show on trend line points and when I move from that point it should not visible. it is visible when I am in the chart area and it hides when I leave the chart area, but I want it should hide when I leave the line point.