angular-ui/ui-grid
Ver no GitHub3.0.0-RC.20 row header got focused when tab off the previous row
Open
#3.389 aberto em 30 de abr. de 2015
good first issue
Métricas do repositório
- Stars
- (5.395 stars)
- Métricas de merge de PR
- (Nenhuma PRs mesclada em 30d)
Description

When tab off the last cell of previous row, the focus is on the row header since RC. 20. I changed the function setTabEnabled() { $elm.find('div').attr("tabindex", -1); } to be function setTabEnabled() { $elm.find('div').attr("tabindex", 0); }
Then it correctly focused on the first cell but not row header.
Is this designed on purpose?