Hello,
Whenever I run my project a ton of CSS is being printed. How can I stop this?
Thanks.
Hm... I have server-side processing triggered at the saveUrl endpoint of the Upload component endpoint.
How do I explicitly set a timeout for the response?
I've implemented a basic line chart with nothing out of the ordinary but on the first initial load of the chart I get this warning.
Warning: Failed prop type: ChartSeries children should be Array of type ChartSeriesItem.
in ChartSeries (created by LineChart)
import React from 'react';
import {
Chart, ChartTitle, ChartSeries, ChartSeriesItem, ChartCategoryAxis, ChartCategoryAxisItem, ChartLegend,
} from '@progress/kendo-react-charts';
const LineChart = (props) => {
const { allocations, mandates } = props;
const categories = (data) => {
const array = [];
data.forEach((x) => {
array.push(x.mandate);
});
return array;
};
const asdc = (data) => {
const array = [];
data.forEach((x) => {
array.push(x.asdc);
});
return array;
};
return (
<div className="line-chart">
<Chart>
<ChartTitle
text="Active Spread Duration Contribution"
/>
<ChartLegend
position="bottom"
orientation="horizontal"
/>
<ChartSeries>
<ChartSeriesItem
type="line"
name="New ASDC"
data={asdc(allocations)}
markers={{ visible: false }}
tooltip={{ visible: true }}
/>
<ChartSeriesItem
type="line"
name="Old ASDC"
data={asdc(mandates)}
markers={{ visible: false }}
tooltip={{ visible: true }}
/>
</ChartSeries>
<ChartCategoryAxis>
<ChartCategoryAxisItem categories={categories(allocations)} />
</ChartCategoryAxis>
</Chart>
</div>
);
};
asdc is just to create the array of data that I want. The whole chart shows up fine and works but I would like to fix this error if possible.
Thanks
Hi,
Is it possible to configure Kendo React Grid to show the column menu like Kendo JQuery's classic look where the submenu is on left/right hand side?
Also see the attached screenshot.
Thanks,
Jie
We need the TimePicker to retain all of its default behavior with the addition of accepting multiple format types when a user manually enters data. For example, if the user chooses a date from the popup it will show the date with the default format, but we want the user to also type in varying formats such as '7a' or '7pm'. Is it possible to add multiple accepted input formats to a TimePicker?
Required time formats:
Hi All:
When I use React Data Grid Component & Column Menu - KendoReact Docs & Demos (telerik.com), I set some columns,
Step1: uncheck select all
2. input st at search box, only check test1, but test and test1 both changes to checked
3. clear search box, the two columns in the image below are checked.
you can test on below link, this is a very important function of our project, looking forward to your early reply. thank you
Hello,
we are considering adopting KendoUI DataGrid for a legacy application rewrite and I was wondering if there's a way to implement filtering of the data by clicking on a specific value in a cell, like in the screenshot below (clicking on any date will filter the grid by that date):
Constraints are:
Any link to specific docs or examples would be much appreciated!
I looked through the documentation and examples but it's not clear if it's something that is achievable without a massive customisation of the cell components. I also have zero experience with the library as I'm looking at it for the first time as we're considering our options for the UI library to use to rewrite the application, so apologies in advance if I missed anything obvious from the docs!
Thank you
Diego
If a `NumericTextBox` contains a value ending in `0` and the user edits the value by backspacing over the non-zero digits the next number entered replaces the zero instead of inserting before it.
For example, the starting value is:
`220`
The user clicks to place their cursor as so:
`22|0`
If they then hit backspace twice, the cursor will jump to after the zero:
`0|`
And when a new digit is entered it replaces the zero:
`3|`
I would expect the user to be able to enter new digits to appear before the zero rather than replacing it. This behavior is reproducible on the example on the Overview page in the documentation.
Is there any way to disable this behavior?
“We are planning to develop a web application using React for the frontend and Go for the backend, following an MVC structure. Is it possible to connect Telerik React libraries with Go for this purpose? Thank you very much for your response. Best regards.”
I am trying to run the example code from here https://www.telerik.com/kendo-react-ui/components/pdfviewer/ with the same exact file but the PDFViewer is just not loading any document. It component appears in the page, there's no error in the console, but no matter what I do I can't see any data loaded (also checked the onLoad event - it's not triggered). I've also tried to supply an url instead of base64 data and the result is the same