Foros del Web » Programando para Internet » Javascript » Frameworks JS »

recibir en pagina php, la fila seleccionada en una tabla dataTable

Estas en el tema de recibir en pagina php, la fila seleccionada en una tabla dataTable en el foro de Frameworks JS en Foros del Web. ya logro mostrar mis datos en una dataTable, y logro seleccionar una fila, ahora quiero recibir los valores de esa fila en una pagina php, ...
  #1 (permalink)  
Antiguo 26/02/2010, 11:53
 
Fecha de Ingreso: enero-2010
Mensajes: 12
Antigüedad: 14 años, 2 meses
Puntos: 0
recibir en pagina php, la fila seleccionada en una tabla dataTable

ya logro mostrar mis datos en una dataTable, y logro seleccionar una fila, ahora quiero recibir los valores de esa fila en una pagina php, para poder procesar dichos datos, como puedo hacer eso, aca les pongo el codigo para mostrar el dato y seleccionar la fila...., alguna ayuda please.

var oTable;
var giRedraw = false;
$(document).ready(function() {
oTable=$('#example').dataTable( {"bProcessing": true, "sPaginationType": "full_numbers",
"sAjaxSource": "pag_aux/dataTable/BAbiertas.ivm"} );


/* Add a click handler to the rows - this could be used as a callback */
$("#example tbody").click(function(event) {
$(oTable.fnSettings().aoData).each(function (){
$(this.nTr).removeClass('row_selected');
});
$(event.target.parentNode).addClass('row_selected' ); });

/*Submit*/
$('#TablaForm').submit( function() {
var anSelected = fnGetSelected( oTable );
alert(anSelected[0]);
return false;} ); } );

/* Get the rows which are currently selected */
function fnGetSelected( oTableLocal )
{
var aReturn = new Array();
var aTrs = oTableLocal.fnGetNodes();

for ( var i=0 ; i<aTrs.length ; i++ )
{
if ( $(aTrs[i]).hasClass('row_selected') )
{
aReturn.push( aTrs[i] );
}
}
return aReturn;
}



<form id="TablaForm" action="" name="TablaForm" >
<table class="display" id="example">
<thead>
<tr>
<th width="39" height="51" >ID</th>
<th width="101" >Controlador</th>
<th width="95" >Reportada </th>
<th width="133" >Ubicaci&oacute;n</th>
<th width="104" >Radar</th>
<th width="86" >Fecha Apertura </th> </tr>
</thead>
<tbody>
<tr>
<td height="28" colspan="9" class="dataTables_empty">Cargando datos del servidor... </td>

</tr>
</tbody>
</table>
<div style="clear: both;"> </div>
<div style="text-align:right; padding-bottom:1em;">
<button type="submit" id="submit">Submit form</button>
</div>
</form>

Etiquetas: datatable, fila, php, recibir, tablas
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 19:13.