Hi
Is it possible to use keepItemsMounted for panelbar when used in drawer?
When i try to use it this way, the panel bar items will not close/collapse.
I made a stackblitz to show the problem.
Any help on this would be appreciated.
Thankyou
Neil
https://stackblitz.com/edit/react-qsacwnyt?file=app%2Fapp.tsx

Hi Team,
Combining Chart Series with Pattern-specific rendering. The requirement was to combine/group the chart items where one will be solid and the other will be pattern-specific. I created one sample, and it's working as expected.
Working Example - https://stackblitz.com/edit/react-hxpthdxt-yevr77he?file=app%2Fapp.jsx
I created one more sample for the test. If I pass the chart component on the page itself, then it's working fine, but when the chart props are passed to the global object, then it's throwing an error.
Failed to execute 'structuredClone' on 'Window': (e) => e.dataItem.chartColor could not be cloned.
Reference Example - https://stackblitz.com/edit/react-hxpthdxt-ufdubb7e
Note - If you comment/delete the second-chart, then you can see the first-class chart render correctly.
Versions Used -
"@progress/kendo-react-charts": "^9.5.0",
"react": "^16.14.0",Please look into it as soon as possible.
Thanks,
Mahesh

Hello,
I need a draggable modal window with a KendoReact Form. What is the best way to set focus to the selected input?
Right now I'm using the Window component (because it's draggable) with the modal={true} option. Unfortunately, the Window component doesn't have an autoFocusedElement prop, which the Dialog component does.
Best,
Tomek
Problem: DataResult isn’t supported
Why do we complain about this:
We want to use virtual scroll functional, but without DataResult support we have to load all items at once (data is pretty massive), which produce unnecessary overload of network.
Does it supported by other components or implementations: Angular TreeList, React Grid
Question: Do you plan to introduce DataResult support for React TreeList in closest feature
I have an App that uses a barcode scanner and interacts with a website using a webview control. The scanner does not use a keyboard wedge to return data - it uses a callback function to pass the scanned barcode data into the website (built using React and Telerik controls).
In order to provide a target for the barcode data, the user must click the editable control (to place the focus on the control) so that the scanned barcode text is then placed in that control. For a text box, this is a trivial matter, but for a dropdown list this seems to be more complex. When a user selects the dropdown list, the list opens up complete with the search box. Is there a programmatic way of populating that search box with the text obtained from the barcode scan? I have even tried directly manipulating the DOM to try to set the inner text property, but without success.
Thanks in advance
Mike

I'm trying to add a simple expansion panel to my page. I need to use extra-large chevron-up down expand and collapse icons. I've tried creating an SvgIcon react element and setting its size that way, but I get a typescript error saying the element is missing the name. Is there a simple way to change the expand and collapse svg icon sizes on an ExpansionPanel? This is something I've tried so far:
const expandIcon = (
<SvgIcon className="k-mb-xs k-mx-sm" icon={chevronUpIcon} size="xxlarge" />
);
return (
<ExpansionPanel
title={title}
expanded={expanded}
expandSVGIcon={expandIcon}
onAction={(event) => {
setExpanded(!event.expanded);
}}
>
<span />
<Reveal>
{expanded && <ExpansionPanelContent>{children}</ExpansionPanelContent>}
</Reveal>
</ExpansionPanel>
);