vote up 0 vote down star

I want reorder table rows using JavaScript .

for eg:

<table>
  <tr>
    <td>1</td>
    <td>2</td>
    <td>3</td>
    <td>4</td>
  <tr>
  <tr>
    <td>A</td>
    <td>B</td>
    <td>C</td>
    <td>D</td>
  <tr>
  <tr>
    <td>A1</td>
    <td>B1</td>
    <td>C1</td>
    <td>D1</td>
  <tr>
</table>

I want to do this in JavaScript without using jQuery. I want to show the A1,B1,C1,D1.. row as the first row and then 1,2,3,4 row and then A,B,C,D row.

I know that there will be some wait time on the client side but I need to do it in the client side. Is there some generic solution to do this, for any number of rows?

flag

50% accept rate
What does this have to do with C#? As far as a generic solution in JS, it depends what you mean by generic (you gave one example, but didn't say how it should be extrapolated). But this isn't hard at all once you know the JS DOM methods. If you're still lost, give the signature of the function you're trying to implement, and we'll try to help. – Matthew Flaschen Apr 29 at 3:07
@Matthew since the question implies this has nothing to do with c#, I think this may be yet another case where the asker just tagged with the technologies being used on the project. I removed the c# tag. – Rex M Apr 29 at 3:10
@Matthew and Rex... I tagged it under c# not becuase of the project but assuming that max people who use javascript would use C#. I just wanted this question to reach more no of people. I hope you understand what I am trying to say. – Ben Apr 29 at 3:42
@Ben: Your assumption is probably incorrect. In any case, you should only tag questions with relevant tags, otherwise people tend to get annoyed with you :) – harto Apr 29 at 6:37
Alright... I will add appropriate tags. – Ben Apr 29 at 7:22

3 Answers

vote up 2 vote down

If I understand correctly, you are asking how to take the last row and make it the first row, pushing down the rest. This should do it:

<table id="mytable">
...
</table>

<script type="text/javascript">
    var tbl = document.getElementById('mytable');
    var rows = tbl.getElementsByTagName('tr');
    var firstRow = rows[0];
    var lastRow = rows[rows.length];
    firstRow.parentNode.insertBefore(lastRow.parentNode.removeChild(lastRow), firstRow);
</script>

Assuming your table does not have nested tables. At which point this would need to be a little smarter. This also assumes you're not using TBODY and THEAD nodes. But I'm sure you can get the idea and enhance it from there.

link|flag
This may not work because browsers insert TBODY into the DOM regardless of markup, and IE is not smart enough to properly reparent a row from TABLE to TBODY when you use DOM operations. – levik Apr 30 at 15:31
@levik actually my script does allow for nodes between the TABLE and TR element, such as TBODY. It does so by always referring to the TR's parent, whatever that might be. – Rex M Apr 30 at 17:14
@Rex and @levik... I found a very eligant solution to do this... which is much more generic and doesnt have to worry about other things – Ben May 1 at 4:27
@Ben please post it as an answer then! – Rex M May 1 at 13:25
@Rex I have added my solution... let me know what you think about my eligant solution. Thanks, Ben – Ben May 2 at 16:14
vote up 1 vote down check

The best way to solve this in Javascript is:

Give the Tr.. a unique name. for eg: X_Y,X_Z,A_Y,A_Z

Now add a hidden lable or text Box which gives the sorting order from the server i.e When the page renders I want to sort it All the Tr's that have a ID starting with A should come first and All the Z's should come second.

A,X Z,Y

When the page renders..the order should be A_Z,A_Y,X_Z,X_Y

Before Rendering this is table that comes from the aspx file: A B GH GH1 HU HU1 JI JI1 JI JI1

Script: function SortAndArrange() { var firstList = document.getElementById('lblFirstSortOrder').value; var secondList = document.getElementById('lblSecondSortOrder').value; var firstTypes = new Array(); firstTypes = firstList.split(','); var secondLists = new Array(); secondLists = secondList.split(','); var refNode = document.getElementById('Tbl_' + firstTypes[0] + "" + secondTypes[0]); for (var i = 0; i'+firstTypes[i]+'_'+secondTypes[j]; var FirstSecondTrs = document.getElementById(TrName); if (FirstSecondTrs) { FirstSecondTrs.parentNode.removeChild(FirstSecondTrs);
insertAfter(refNode,FirstSecondTrs); refNode = FirstSecondTrs; } } } } function insertAfter( referenceNode, newNode ) {
referenceNode.parentNode.insertBefore( newNode, referenceNode.nextSibling ); }

I hope you guys get the idea.. for me the sorting order will always come from the server and not from the user of the page...

Thanks a Lot for all the answers.. Apprecite it. Helped me get to this solution.

Thanks, Ben

link|flag
vote up 0 vote down

Do:

var table = ...; // Get reference to table (by ID or other means)
var lastRow = table.rows[table.rows.length - 1];
lastRow.parent.insertBefore(table.rows[0], lastRow);
link|flag
Alternatively, you can use table.getElementsByTagName("tr") to get the rows. – Matthew Flaschen Apr 29 at 8:49
That will (wrongly) return any rows of nested tables - which you don't want. – levik Apr 30 at 15:28

Your Answer

Get an OpenID
or
never shown

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