aboutsummaryrefslogtreecommitdiff
path: root/content/post/2008-10-11-tabbing-through-fields-vertically.markdown
blob: 639cbb3161f9ae95886cdb2cf9625b831507a8b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
layout: post
title: "Tabbing through fields vertically"
date: 2008-10-11T01:54:00Z
comments: false
permalink: /post/54058512/tabbing-through-fields-vertically
categories:
---



Sometimes it’s useful to switch the browser’s default tabbing behavior (left to right) to the opposite (top to bottom) when your input fields are in a grid layout instead the of the usual single column layout. Having to do this manually is a real pain, especially for large grids; So here is a solution in javascript, using mootools:

```javascript
window.addEvent('domready', function(){
    var trs = $$('#mytable tr')
    var accum = 0
    trs.each(function(tr, trindex){
        accum = trindex + 1
        tr.getChildren().each(function(td, tdindex){
            td.getChildren('input')[0].tabIndex = accum
            accum = accum + trs.length
        })
    })
})
```