Puedo generar la tabla con cualquier consulta en automático sin problemas, el problema viene cuando quiero capurar un click sobre un <tr> para que me de su html
Código:
<table>
<thead>
<tr>
<th>idzona</th>
<th>nombre</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Bosques</td>
</tr>
</tbody>
</table>
La tabla la genero ve un JSON por jQuery.ajax(), y es un jQuery plugin que hize.
el succes de la consulta ajax es este
Código:
success:function(data){
var bodyRow;
jQuery.each(data.cols,function(){
objTHeadRow.append("<th>"+this.name+"</th>");
});
jQuery.each(data.rows,function(){ //Rows del tbody
bodyRow="<tr>";
//alert(this);
jQuery.each(this.c,function(){
bodyRow+="<td>"+this.val+"</td>";
});
bodyRow+="</tr>";
objTBody.append(bodyRow);
});
}
});