Hello Team,
I am using Kendo React Pivot Table version @progress/kendo-react-pivotgrid": "^5.9.0". For downlaoding pivot table as excel, l am using saveAsExcel function given by export-to-excel library and followed this https://www.telerik.com/kendo-react-ui/components/pivotgrid/excel/ documentation. I want to remove row and column headers from downloaded excel file. I have added screenshot for same. Your little help will be appriciated.
Thank You in Advance

when searching for parent node, the children nodes related to that are not shown, therefore, when there is a lot of drop-down data and there are the same child nodes under different parent nodes, it is difficult to find the desired child node.
the time indicator has crossed the event block, but the event actually happens after that.

I tried overriding the z-index of the k-animation-container class, but I wasn't successful. What can I do to proceed with this idea?
Gabriel.
can you please provide an example of kendo react selection grid along with pagination, filtering enabled ?
How can I implement a MaskedTextBox that displays the country flag automatically when a country code like +1 or +2 is entered for a phone number?
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
MaskedTextBox,
InputPrefix,
InputSuffix,
} from "@progress/kendo-react-inputs";
import { Button } from "@progress/kendo-react-buttons";
import { Icon } from "@progress/kendo-react-common";
const prefix = () => (
<InputPrefix>
<Icon name="user" />
</InputPrefix>
);
const suffix = () => (
<InputSuffix>
<Button themeColor="primary" fillMode={"flat"} rounded={null}>
Send
</Button>
</InputSuffix>
);
const App = () => {
return (
<div>
<div>Number:</div>
<MaskedTextBox
prefix={prefix}
suffix={suffix}
mask="(999) 000-00-00-00"
defaultValue="(359) 884-12-33-21"
width={300}
/>
</div>
);
};
Hi,
Please see this example https://codesandbox.io/s/thirsty-bohr-2s8dmm?file=/app/main.jsx. There is a very simple DatePicker and a very simple Grid in the page. The Grid has 1000 rows. When clicking the DatePicker button, it take 1 - 2 seconds to show the calendar dropdown, which significantly slower then normal.
Thanks,
Jie
I'm working on a component library, and I'd like to wrap the Kendo Cards component with additional stuff that matches our requirements; however, I get an error about hooks being an issue due to the nesting. Is there a way around this?
import { ReactNode } from 'react';
import { Card as KendoCard } from '@progress/kendo-react-layout';
export interface CardProps {
/**
* any nested JSX elements
*/
children?: ReactNode;
}
/**
* Primary UI component for wrapping content in a card
*/
const Card = ({ children }: CardProps) => (
<KendoCard
style={{
width: 260,
boxShadow: '0 0 4px 0 rgba(0, 0, 0, .1)',
marginTop: '15px',
padding: '19px',
}}
>
{/* <KendoCardBody> */}
<h4>This is a change</h4>
{children}
{/* </KendoCardBody> */}
</KendoCard>
);
export default Card;
Hi Team,
Can some one provide me a solution example for kendo react scheduler custom editor with recurrence rule.