Topic: Tabindex
Suggest ordered 'tabindex' of the FORM elements to make a more logic jump for tab-key.
Example:
In 'Add Forum' the cursor goes in this order when starting in 'Position'
Position
[Options] Admin/moderators only
Update
Name
[Options] Closed
Description
Category
Now, since all forums are listed in a row, i'm not sure how to make a practical solution, but it would nice to have it jump in this order:
Position
Name
Description
[Options] Admin/moderators only
[Options] Closed
Category
Update
More info http://www.w3schools.com/xhtml/xhtml_st … ibutes.asp about tabindex.
One possible solution chould be to add 7 to each tabindex for each forum-loop.
$tab_pos = 1;
$tab_name = 2;
$tab_desc = 3;
$tab_op_admin = 4;
$tab_op_closed = 5
$tab_cat = 6;
$tab_update = 7;
Like this (Loop1):
Position - tabindex=$tab_pos
Name - tabindex=$tab_name
Description - tabindex=$tab_desc
[Options] Admin/moderators only - tabindex=$tab_op_admin
[Options] Closed - tabindex=$tab_op_closed
Category - tabindex=$tab_cat
Update - tabindex=$tab_update
$tab_pos += 7;
$tab_name += 7;
$tab_desc += 7;
$tab_op_admin += 7;
$tab_op_closed += 7;
$tab_cat += 7;
$tab_update += 7;
If anyone understands what i'm rembling about...