angular-ui/ui-grid

3.0.0-RC.20 row header got focused when tab off the previous row

Open

#3.389 geöffnet am 30. Apr. 2015

Auf GitHub ansehen
 (1 Kommentar) (0 Reaktionen) (1 zugewiesene Person)JavaScript (2.496 Forks)batch import
good first issue

Repository-Metriken

Stars
 (5.395 Stars)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

image

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?

Contributor Guide