Telerik Forums
KendoReact Forum
4 answers
514 views

We’re currently trying to make our website compliant with the WCAG standards, and right now it fails a few of the requirements. I'm wondering if these are problems with the Kendo grid itself or if you can help us debug something we're doing wrong in our implementation.

One issue was with checkboxes, which don’t seem problematic when I run an audit on the example, but did present issues when we used the same technique to add them in our own grid:
https://www.telerik.com/kendo-react-ui/components/grid/selection/

 

The other issues were with filters. This is the example that we referenced when adding filters to our code, which was a similar situation (no issues when we audit the example page, but shows issues when we audit our website):
https://www.telerik.com/kendo-react-ui/components/grid/filtering/

 
This is the breakdown of issues I came across:

Issue 1: Form elements must have labels - checkboxes
As I mentioned above, we added checkbox selection to the table following this example: https://www.telerik.com/kendo-react-ui/components/grid/selection/

However, we're seeing "form elements must have labels" issues on all of the checkboxes when we run an audit.

Issue 2: invalid values for 'aria-owns' and 'aria-activedescendant' attributes on filters
This problem applies to each of the built-in filter dropdowns (I added filtering following the example linked above).
The attached image named issue2 has a more detailed breakdown of this issue, but TLDR: the validator says the issue is that "the aria-owns attribute must point to an element in the same document"

Issue 3: Form elements must have labels - inputs for filters
The attached image named issue3 has a more detailed breakdown of this issue.

Issue 4: Form elements must have labels - filter dropdowns
The attached image named issue4 has a more detailed breakdown of this issue.

-----------------------------------------------------------------------------------------------------------
Things I’ve already tried:
I tried upgrading Kendo to the latest version via npm (https://www.npmjs.com/package/@progress/kendo-react-grid) to see if the problems were fixed, but my audit showed me the same issues I had seen and more (this time issues with column titles).

Relevant parts of the code:
I edited out some helpers, handler functions, column setups, etc that don’t seem relevant. Please let me know if there's something else you want to see!

01.// Handler for when a user selects/unselects a row
02.onSelectionChange = (event) => {
03.var dataClone = this.cloneObject(this.props.data);
04.const ind = dataClone.findIndex(item =>
05.item.Key === event.dataItem.Key
06.);
07.if (ind >= 0) {
08.dataClone[ind].selected = !event.dataItem.selected;
09.this.props.onUpdateResults(dataClone);
10.this.forceUpdate();
11.}
12.}
13. 
14.// Handler for when users checks/unchecks "select all" (the checkbox at the top)
15.onHeaderSelectionChange = (event) => {
16.const checked = event.syntheticEvent.target.checked;
17.var dataClone = this.cloneObject(this.props.data);
18.dataClone.forEach(item => item.selected = checked);
19.this.props.onUpdateResults(dataClone);
20.}
21. 
22.// Render function
23.render() {
24.return (
25.<div ref={this.componentInfo}>
26.<Grid
27.resizable
28.reorderable
29.filterable
30.sortable
31.pageable={{ pageSizes: this.getPageSizeOptions() }}
32.groupable
33.expandField={globals.EXPAND_FIELD}
34.selectedField={globals.CHECKBOX_FIELD}
35.onExpandChange={this.onExpandChange}
36.onSelectionChange={this.onSelectionChange}
37.onHeaderSelectionChange={this.onHeaderSelectionChange}
38.data={this.localDisplayData}
39.onDataStateChange={this.onDataStateChange}
40.{...this.props.dataState}
41.>
42.<Column
43.field={globals.CHECKBOX_FIELD}
44.filterable={false
45.groupable={false}
46.headerSelectionValue={
47.this.props.data ? this.props.data.findIndex(dataItem => dataItem.selected === false) === -1 : false
48.}
49.selected={false}
50.width='42px'
51./>
52.</Grid>
53.</div>
54.);
55.}
56.}



Katie
Top achievements
Rank 1
 answered on 07 Mar 2019
1 answer
634 views
Hi, I want to implement enable and disable of the clear button (x at the end) on AutoComplete. I am unable to find any property to set for KendoReact component. I found one here at https://docs.telerik.com/kendo-ui/api/javascript/ui/autocomplete/configuration/clearbutton but thats for javascript. Could you help me implement it in React?
Stefan
Telerik team
 answered on 06 Mar 2019
3 answers
629 views

In the JQuery Kendo Chart, I was able to have 2 Y axes, one on the left and the other on the right side of the chart.

 

How would I go about doing this in the React Chart control? I tried setting the axisCrossingValue but didn't have any luck.

Is this feature available?

Stefan
Telerik team
 answered on 06 Mar 2019
1 answer
845 views

     Hi, I have a dropdown rendering a list from an array of objects. I have used the prop 'defaultValue' to have a value preselected while loading. I want to implement a clear button functionality where clicking the button resets back the selected value to the default value. Please advice.

 

Here is the stackblitz url: https://stackblitz.com/edit/react-xzennu?file=app/main.js

Stefan
Telerik team
 answered on 06 Mar 2019
1 answer
301 views

-how to change the GridToolbar position, because by default this is rendered above the grid, and i need render that below the grid?

my solution is put the GridToolbar outside the grid object

-also i need change the GridToolbar height to fit with the size of my buttons

BR

Stefan
Telerik team
 answered on 05 Mar 2019
5 answers
1.3K+ views

As far as I can see, Kendo UI React has no "itemDisabled" prop for "DropDownList", but in Angular version it has. Will it be implemented in React?

For now, I've created such workaround. But there is one drawback: the dropdown after choosing disabled item is closed. How to avoid it?

 

Thanks in advance.

 

P.S.: here you use "renderValue", but in the demo on stackblitz you use "itemRender". Please, fix it.

Vasilii
Top achievements
Rank 1
 answered on 04 Mar 2019
6 answers
597 views

Hello,

We have a dynamically created Grid for which we need to have an Excel Export. The code below returns an empty excel file (no data). What are we doing wrong?

// Parent file

import ClickTrackingGrid from './common/Grid';

import { ExcelExport } from '@progress/kendo-react-excel-export';

export default class EmailClients extends React.Component {
     _export;

     constructor(props) {
             super(props);

              this.export = this.export.bind(this);

    }

    export() {
             this._export.save();
    }

    render() {

             <button title="Export Excel" className="k-button k-primary" onClick={this.export}>Export to Excel</button>

             <ExcelExport data={this.props.ctGeographGeoFigures} ref={(exporter) => { this._export = exporter; }}>
                  <ClickTrackingGrid dataSource={this.props.ctGeographGeoFigures} />
             </ExcelExport>

    }

}

// ClickTrackingGrid file

import React from 'react';
import { Grid, GridColumn } from '@progress/kendo-grid-react-wrapper';

export default class ClickTrackingGrid extends React.Component {
       render(){
                 const { dataSource } = this.props;
                 var allColumns = dataSource.length > 0 ? Object.keys(dataSource[0]) : [];
                 var columnsToShow = allColumns.map((item,i) => <GridColumn field={item} key={i} />);
                 return (
                           <Grid dataSource={dataSource}>
                                        { columnsToShow }
                           </Grid>
                );
      }
}

Vasil
Telerik team
 answered on 01 Mar 2019
2 answers
901 views

I'm facing an issue where I have properties on my objects that contain a datetime, with a specific time. When I try to filter on these columns in the grid they wont be matched properly since the date used for filtering has the time set to 00:00:00. Is there a prop or option to pass the column somehow, to make sure that time is also being taken into the filtering process?

Thanks!

Nikolay
Telerik team
 answered on 28 Feb 2019
1 answer
60 views

How can I add a theme, which only apply for the Kendo UI React Editor in a component and not globally?

I want to be able to set height and width etc.

Vasil
Telerik team
 answered on 28 Feb 2019
12 answers
668 views

I am trying to enable filtering on a date field. Everytime I hit the calendar filter I get

TypeError: Cannot set property 'getCurrentStack' of undefined
sp-webpart-workbench-assembly_en-ie_ece526ae9c4505c559f829872676137b.js:190
TypeError: Cannot set property 'getCurrentStack' of undefined

 

Any help would be fantastic

Nikolay
Telerik team
 answered on 28 Feb 2019
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?