Can rows be magnified on rollover?

Can rows be magnified on rollover?

justStevejustSteve Posts: 49Questions: 8Answers: 1
edited May 2010 in General
I'm looking for examples of UI implementations where, instead of highlighting the background of the active row, the boundaries expand and overlap the boundaries of the row above and below. Possible?

thx

Replies

  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    I very much doubt it with an HTML table... You would probably need to build a "table" display up with DIV elements and have each of them absolutely positioned with the hover effect on them. Certainly do-able like that, but not something that DataTables will support (since its an HTML table). The best you could try would be to set position:absolute on the TR elements and try manipulating them - but I think what happens there is going to depend very much on the browser's rendering engine...

    Allan
This discussion has been closed.