vote up 0 vote down star

I have a nested table 3x3

<table>
  <tr>
    <td></td>
    <td></td>
    <td></td>
  </tr>
  <tr>
    <td></td>
    <td id='myCell'></td>
    <td></td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
  </tr>
</table>

So, i need to get cells closed to my '#myCell' - on the left, on the right, top, bottom.

var myCell = $('#myCell')[0];
var leftCell = myCell.previousSibling;
var rightCell = myCell.nextSibling;
var topCell = $(myCell).parent()[0].previousSibling().children()[myCell.cellIndex];
var bottomCell = $(myCell).parent()[0].nextSibling().children()[myCell.cellIndex];

It seems that is ok. Now i need get the same cells with specefic table layout.

<table>
  <tr>
    <td rowspan=3></td>
    <td></td>
    <td></td>
  </tr>
  <tr>
    <td id='myCell'></td>
    <td></td>
  </tr>
  <tr>
    <td></td>
    <td></td>
  </tr>
</table>

This layout implies that i could get top, right, bottom cells.

flag

3 Answers

vote up 0 vote down check

There is no direct solution. I've used projection matrix to calculate near cells. My solution released in GridWizard - HTML Table Constructor

link|flag
vote up 0 vote down

Sadly, tr's and td's are unreliable when dealing with colspan/rowspan issues. SO1303106 shows a solution that builds up a matrix of each row/column and creates some functions to help you query it. This article inspired that solution, and shows the problem. The solution is not jQuery specific, and I wouldn't be surprised if someone comes up with a better solution.

link|flag
Thank you! i guessed that it's impossible. Already resolved that with the matrix. – RayZ Sep 21 at 8:42
vote up 0 vote down

you may try defining special functions for retrieving each possible sibling cell

var myCell = $('#myCell');

function getLeft() {
  return $(myCell).previousSibling();
}

function getRight() {
  return $(myCell).nextSibling();
}
// etc for top/right

and on missing cells you'll just receive null;

link|flag
I understood, how can i get right/left cells. But this kind of code doesn't works when i try get bottom cell with the table cell with rowspan=3 on the begining. cellIndex property of the middle cell is 0; – RayZ Sep 17 at 10:53
wouldn't it be .prev() and .next() ? – gnarf Sep 17 at 12:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.