I've created a Kendo Editor with a variety of toolbar buttons. However, when I bring up the list of fields in JAWS (Insert + F5), not all of them are uniquely identified. Some of them just say "Button", whereas others say what the button is used for, as shown (and described) in the attached file. The markup is below:
01.
$(
"#txtBody"
).kendoEditor({
02.
resizable: {
03.
content:
true
04.
},
05.
tools: [
06.
"formatBlock"
,
07.
"formatting"
,
08.
"bold"
,
09.
"italic"
,
10.
"underline"
,
11.
"strikethrough"
,
12.
"subscript"
,
13.
"superscript"
,
14.
"justifyLeft"
,
15.
"justifyCenter"
,
16.
"justifyRight"
,
17.
"justifyFull"
,
18.
"insertUnorderedList"
,
19.
"insertOrderedList"
,
20.
"indent"
,
21.
"outdent"
,
22.
"foreColor"
,
23.
"backColor"
,
24.
"createLink"
,
25.
"unlink"
,
26.
"print"
27.
],
28.
});
What needs to be done in order to update the button's such that they're uniquely identified in the dialog?
According to my understanding of your 508 documentation (http://docs.telerik.com/kendo-ui/accessibility/section-508), this should be supported out of the box.