p: editor primefaces tabindex does not work

0

In a .xhtml view I use p: firstfaces editor

<p:editor id="idDescription" tabidex="2" >
 ...

When the tab key is pressed, after being in field 1, tabindex="1", it will not go to the next one of the sequence, in that case it is idDescription and yes to the following tabindex = 3 "which is an inputText, this happens in that component.

  • Primefaces 5.3

How do I resolve this? do you have any more properties to set up for it to work?

    
asked by anonymous 26.10.2016 / 17:34

1 answer

3

The tabidex attribute is not valid for op: editor, as can be seen in the documentation: link .

    
26.10.2016 / 22:07