View Issue Details

IDProjectCategoryView StatusLast Update
0007114mantisbtbugtrackerpublic2006-09-12 00:52
Reportergoldstift Assigned Tovboctor  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version1.0.3 
Fixed in Version1.1.0a1 
Summary0007114: tabindex in duplicate in bug_report_advanced_page
Description

The tabindex of the "view_state" radio fields is wrong.
They have values 9 and 10 though they should actually have 17 and 18.

Tabindex 9 is already assigned to "product_version" and
tabindex 10 is already assigned to "build".

TagsNo tags attached.

Activities

goldstift

goldstift

2006-05-18 07:09

reporter   ~0012874

Question:
Wouldn't it be more comfortable for all of us to strip the tabindex attributes?
This would also solve the problem with the custom field tab order which had to be handled dynamically.

To preserve the comfort of the functionality, you could write a little javascript focussing the first element of a html form on load.

XHTML1.0 Strict Notation could be like this:
<script type="text/javascript">/<![CDATA[/
document.forms[0].elements[0].focus();
/]]>/</script>

vboctor

vboctor

2006-05-18 09:01

manager   ~0012876

The tab index is now fixed in bug report and update pages, for both the simple and advanced versions.