Advertisement

10.13.2008 at 09:44AM PDT, ID: 23810038 | Points: 500
[x]
Attachment Details

scroll table with focus

Asked by vidhubala in JavaScript

Tags:

i have a table with a scroll using div. when i tab from cell to cell it needs to scroll and the infocus cell needs to be visible. pl help.Start Free Trial
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:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
<style>
#t1 tr { background-color:#CCCCFF }
#t1 td {width:150px}
.green {background-color: green; }
.blue {background-color: #CCCCFF; }
</style> 
<script>
window.onload=function() {
  var tb = document.getElementById('t1');
  for (var i=0;i<tb.rows.length;i++) {
    for (var j=0;j<tb.rows[i].cells.length;j++) {
     tb.rows[i].cells[j].onfocus=function() {this.className='green'}
     tb.rows[i].cells[j].onblur=function() {this.className='blue'}
    }
  }
  tb.rows[0].cells[0].focus();
}
</script>
<div style="width:800px;overflow:scroll;">
		<table id="t1" cellpadding="5" cellspacing="1" border="0" width="2000">
            <tr>
                <td tabindex="1" class="green">
                    fsdfsd</td>
                <td tabindex="2">
                    fsdfds</td>
                <td tabindex="3">
                    fsdfsd</td>
                <td tabindex="4">
                    hghfgh</td>
            </tr>
            <tr>
                <td tabindex="5">
                    fsdfsd</td>
                <td tabindex="6">
                    fsdfds</td>
                <td tabindex="7">
                    fsdfsd</td>
                <td tabindex="8">
                    hghfgh</td>
            </tr>
        </table>
</div>
[+][-]10.13.2008 at 03:44PM PDT, ID: 22707259

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10.18.2008 at 06:18PM PDT, ID: 22750493

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10.18.2008 at 06:21PM PDT, ID: 22750500

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11.06.2008 at 07:29PM PST, ID: 22901804

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11.06.2008 at 10:18PM PST, ID: 22902217

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-42 - Hierarchy / EE_QW_2_20070628