Konstantin Dikov
Konstantin Dikov
This is the configuration of the Button generated by the DropDownButton: ``` {this.props.text} ``` This causes problems when the "text" is not a simple string value: `` The above configuration...
The issue can be observed in the following example: [https://stackblitz.com/edit/react-gqwwcg?file=app%2Fmain.jsx](https://stackblitz.com/edit/react-gqwwcg?file=app%2Fmain.jsx) The same works if the TimelineVIew is changed with WeekView.
Here is an example demonstrating the issue: [https://stackblitz.com/edit/react-rhuis1-lezcgx?file=app%2Fmain.jsx](https://stackblitz.com/edit/react-rhuis1-lezcgx?file=app%2Fmain.jsx) Within the onKeyDown event we should exclude disabled elements, because currently they are added in the "focusableElements" collection: onKeyDown: React.KeyboardEventHandler = (event)...
In the following example, changing the value with the arrow to 0.70% will make the NumericTextBox state invalid, even though the value is valid: [https://stackblitz.com/edit/react-hpnc5e?file=app%2Fmain.jsx](https://stackblitz.com/edit/react-hpnc5e?file=app%2Fmain.jsx) The issue is observed with...
In the following example, the exported PDF file renders a header with no rows on the first page: [https://stackblitz.com/edit/react-gyd3fu-v7ajzp?file=app/main.jsx](https://stackblitz.com/edit/react-gyd3fu-v7ajzp?file=app/main.jsx) Expected behavior: Do not render header if no rows are rendered...
Currently, even if the default "min-height" style added to k-event is overridden to 1px and the text within the event is removed, if the calculated height of an event is...
Reported by client (Ticket ID: 1561246) 1. Alt + F10 should focus toolbar 2. NVDA narrator problems: - Doesn't narrate the disabled buttons - Narrates incorrect role of the toolbar...
To observe the issue, open the following example and scroll using the mouse wheel: [https://stackblitz.com/edit/react-ikkgsq-ffxlg5?file=app%2Fmain.jsx,app%2FrowRender.js](https://stackblitz.com/edit/react-ikkgsq-ffxlg5?file=app%2Fmain.jsx,app%2FrowRender.js) Replacing createRoot with ReactDom.render resolves the issue: [https://stackblitz.com/edit/react-ikkgsq-ffxlg5?file=app%2Fmain.jsx,app%2FrowRender.js](https://stackblitz.com/edit/react-ikkgsq-ffxlg5?file=app%2Fmain.jsx,app%2FrowRender.js)
In the following example, which has 800 columns, scrolling horizontally will start introducing misalignment between the header and the data cells: - [https://stackblitz.com/edit/react-u6s5vf-qg2nzj?file=app%2Fmain.jsx,index.html](https://stackblitz.com/edit/react-u6s5vf-qg2nzj?file=app%2Fmain.jsx,index.html) The problem is due to the fact...
The TypeScript type definition for the "valueRender" prop on the "DropDownList" element seems to be incorrect. The first argument to the function is defined as "React.ReactElement", but the first type...