Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a table which the rows are loaded dynamically from a recordset. I also have used Javascript so that when a checkbox (not in the table) is checked it hides all the rows when column x = y, but I have a vertical border (really just a background image positioned to the right)which fades on the last row of the table using the CSS .sortable .dynamicrow:last-child td{

So when I check the box and the last one row is removed, the border doesn't fade properly basically I need to rerun/refresh the CSS.

In all I am asking how to refresh the style/CSS of an element in javascript.

   .sortable .dynamicrow:last-child td{
    background-image:url(../Images/tablevborderbottom.png);
    background-position:right;
    background-repeat:no-repeat;
}

Is the CSS I use to have the vertical border fade on the last row Sometimes the last row gets removed, so the second last row becomes the last row, but it keeps it's solid border and it doesn't fade out.

Another way of putting it is, after the page has loaded, because of Javascript sometimes the last-child gets removed, so child above it becomes the last-child, how do I apply the above CSS to the new last-child?

share|improve this question
1  
Could you post an example, or at least some code? – Kobi Oct 17 '09 at 18:12
I have edited the post. – Jonathan. Oct 17 '09 at 18:30
Which browser and version does this problem occur in? Are you using any JavaScript libraries? – brianpeiris Oct 17 '09 at 18:48
I am using Firefox(minefield)) 3.7, is it a problem? I thought it would just be how it works. – Jonathan. Oct 17 '09 at 18:54
The :last-child selector seems to work fine in FF 3.5. Minefield might have issues though. Any particular reason you are using the dev. release? It's usually a bad idea to develop applications on pre-release software. – brianpeiris Oct 17 '09 at 19:14
show 1 more comment

1 Answer

up vote 0 down vote accepted

What I would do is add a class declaration to your existing style, and on hiding the last row apply the CSS class to the now last row.

   .sortable .dynamicrow:last-child td, .dummy_last_row{
    background-image:url(../Images/tablevborderbottom.png);
    background-position:right;
    background-repeat:no-repeat;
}

Then the JavaScript. This is based on a simple table, with 5 rows, 1 td with a button with onclick="Lst_row(this)"

function Lst_row(row){
    row = row.parentNode.parentNode;
    tbl = document.getElementById("sorttable");
    rows = tbl.getElementsByTagName("TR");
    if(row == rows[tbl.getElementsByTagName("TR").length-1] || row.className.indexOf("dummy_last_row") != -1){
        for (i=0; i<rows.length; i++){
            if(i != 0 && row == rows[i] && rows[i-1])){
                rows[i-1].className += " dummy_last_row";
            }
        }
    }
}

This of course is very simple, but the base is there.

share|improve this answer
Will it matter if the number of rows is dynamic? So there is no set number? – Jonathan. Oct 17 '09 at 21:12
Nope, it won't matter, it will work with as many rows as there are in the sorttable. However you will need to tweak it to work with the fact that this is based on clicking an element within the table, however you've got one checkbox which exists outside the table. If you are not able to work out how to change it let us know. – Psytronic Oct 18 '09 at 7:43
Could you explain each line of code I kind of get the idea but I'd like to fully understand it. I understand setting the variables. – Jonathan. Oct 19 '09 at 20:17
Sure, bascially working on the principle that the row arg is a button within a TD element, going parentNOde.parentNode will take us to the table row containing the button pressed (button -> td -> tr). We then get all the table rows of the sorttable, next we check if the button pressed is the last row of the table, or the last visible row (as the last visible row has the dummy_last_row class) if it is loop through all the rows, and if the current row loop is the row of the input pressed, and that there is a row before that row (so that not all the rows get hidden) apply the dummy class – Psytronic Oct 19 '09 at 22:31
You'll also need to remove that class on hiding a row, and deal with other things like that, but I'm sure you can do that :) – Psytronic Oct 19 '09 at 22:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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