Hi Team,
I'm trying to auto Focus the combobox control but it is not working.
<ComboBox id="xyz" autoFocus={true} />
I'm working with the Editor component (https://www.telerik.com/kendo-react-ui/components/editor/) .
If a user creates a link, I need to enforce all links open in a new window. By default it's a checkbox that isn't checked.
I haven't found a way to accomplish this yet. I'd like to either check and disable the checkbox or even not show it at all, but still have it enabled.
I also tried using the custom rendering (https://www.telerik.com/kendo-react-ui/components/editor/custom-rendering/) but it seems to all be tucked inside the content var.
Hello,
I am trying to disable the keyboard navigation and actions inside the Upload component but it seems like there are no existing props that could allow me to achieve that.
I also tried to disable the keyboard using a reference with a event listener + stopPropagation but the upload's ref doesn't allow me to add a listener to it.
Do you have any ideas on how I can manage to do this?
Best regards,
Arnaud
Hi There,
I am using the Field with Combobox component, and I set allowCustom=true. And, the Component cannot get the Init{Edit DataGrid ROW value} value.
Here is code
Thank you,<Form onSubmit={props.onSubmit} initialValues={props.item}
render={formRenderProps => <FormElement>
<fieldset className={"k-form-fieldset"}>
<div className="mb-6">
<Field component={ComboBox} name="prod_name" data={prodNameList} required={true} textField="name"
dataItemKey="value" value={selectedName}
onChange={onChangeSelectedName} allowCustom={true} label={"Prod Name"}/>
</div>
</fieldset>
<div className="k-form-buttons">
<button type={"submit"} className="k-button k-primary" disabled={!formRenderProps.allowSubmit}>
Update
</button>
<button type={"submit"} className="k-button" onClick={props.cancelEdit}>
Cancel
</button>
</div>
</FormElement>} />
Hi , there.
Recently i tried to use Kendo for React to create PDF document. But i faced with one issue, i cannot change font size of text.
No matter what properties i use, and what tags i am using it's always same size, even for <h1>
The wierdest thing that everything else working fine colors, margin, font colors, etc.
This is the example of code which i am using.
Does anyone else faced with this issue. ?
Hi,
The KendoReact DropDownList fails WCAG 1.3.1 when not expanded as per axe DevTools. This can be seen on the Getting Started page for the DropDownList https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/
The issue is: "Ensures elements with an ARIA role that require child roles contain them" and the proposed resolution is "Required ARIA child role not present: option".
The HTML from the basic DropDownList on the Getting Started page is as follows:
<span role="listbox" tabindex="0" class="k-dropdown-wrap" aria-haspopup="true" aria-expanded="false" aria-owns="1aaf8d2f-7bcc-4876-82cf-6b8ec7bfb31f">
<span class="k-input"></span>
<span class="k-select">
<span class="k-icon k-i-arrow-s"></span>
</span>
<select tabindex="-1" aria-hidden="true" style="opacity: 0; width: 1px; border: 0px; z-index: -1; position: absolute; left: 50%;">
<option></option>
</select>
</span>
It appears as if the issue is that the <option> is not a direct descendant of the <span> with the "listbox" role. The <span> has an aria-owns element which can be used to resolve this issue, but it contains a unique identifier that doesn't appear anywhere else on the page.
I have done two tests: I have shifted the role="listbox" attribute to the <select> and I have left the role on the outer <span> and added an id="unique-identifier" to the <option>. In both cases the issue is resolved. However, the issue may also be that when hidden the outer span shouldn't have role="listbox".
I believe this is a bug.
Kind regards,
David
Hello,
I've this warning on page loading
Warning: React does not recognize the `firstDate` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase `firstdate` instead. If you accidentally passed it from a parent component, remove it from the DOM element.
in td (created by CalendarWeekCell)
in CalendarWeekCell (created by View)
<div>
<DatePicker
name="OperationDate" className="OperationDate"
defaultValue={fromData.Date}
format="dd/MM/yyyy"
width={116}
tabIndex={8}
weekNumber={true}
weekCell={CustomWeekCell}
onChange={this.handleChange}
{...this.props} />
</div>
I defined this const to resolve this issue :
But it's no effect
a part of my package.json below :
"@progress/kendo-data-query": "^1.5.5",
Do you known how resolve this issue (it's a big warning in my JS console) ?
Thank you
There are two charts: the first one at the top and the second one at the bottom of the page.
I need chart areas to be aligned, for this, it's necessary to set Y-axis to some fixed width.
How this can be achieved?
Thanks!
edit:
Attached example of what should be aligned.
Hello, im using KendoReact Window component and i need to disable keyboard movements with arrow keys, how do i do that?
here are the things i've tried:
1) set draggable={false} prop( window can't be dragged by mouse but arrow keys still work)
2) attach global on keydown event listener and use event.preventDefault(); ( window keeps keyboard movements and firing along side with the attached keydown listener functions )
Hi,
We are using IntlProvider with en-AU locale. The locale appears to be the only prop available. We have centralised the specification of dates which allows for consistent display of dates throughout the application except for grid date column filters. The en-AU locale at least results in a filter format of day/month/year e.g. 5/7/2021, however this doesn't match our preferred format of dd/MM/yyyy i.e. 05/07/2021.
Is there any way to specify the default date format through the IntlProvider? If not, is there anything we can do to force the grid date column filter to inherit the format specified on the column?
We would like to avoid having to implement a custom filter from scratch just for the date format, however if this is the only solution, do you have an example of how to reproduce the default filter (i.e. 2 x logical operator dropdown and datepicker with clear and filter buttons) as a custom filter where the DatePicker format can be specified?
Kind regards,
David