I want to add accesskey attribute in zend navigation.
$navArray = array(
array(
'title' => 'front',
'uri' => '/home',
'label' => 'Home',
'class' => 'a',
'accesskey' => 'h'
),
array(
'title' => 'about us',
'uri' => '/abousus',
'label' => 'About US',
'class' => 'b',
'accesskey'=>'a'
));
In this issue it says, it has been fixed. but still it is not working, even I have download latest zf. Any Idea?
EDIT
Zend current release 1.11.10 do not accept the accesskey attribute in anchor tag. which it should. So I did my own implementation by extending the menu helper. I could have add accesskey property in Page.php by extending it. but i prefer to do quick fix and read the accesskey value from page array in menu helper. and I believe soon zendframework will add the support for accesskey in framework.