Created
October 6, 2017 07:03
-
-
Save mikote2000/c6d3946b13ca306816281e23e8c8e2ae to your computer and use it in GitHub Desktop.
Filas de una tabla clickables
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Ponemos el not #column_edit por si tenemos un td en el que tengamos botones para borrar, copiar, etc. | |
$(document).ready(function () { | |
$(".clickable-row td").not('#column_edit').click(function() { | |
window.document.location = $(this).parent('tr').data("href"); | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table> | |
<tr class="clickable-row" id="registro-1" data-href="proyectos/proyecto/1"> | |
<td>Proyecto 1</td> | |
<td>Productivo</td> | |
</tr> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment