Hola amigos,
Estoy haciendo una tabla que permita editar celdas, este procedimiento ya lo realiza, pero me hace falta que guarde la información que se esta editando en la celda en la base de datos.
este script me permite editarla
<script>
var oTable,oTable2;
$(document).ready(function() {
/* Apply the jEditable handlers to the table */
$('#datos tbody td').editable( 'ARCHIVO PARA GUARADR EN BD', {
"callback": function( sValue, y ) {
var aPos = oTable2.fnGetPosition( this );
oTable2.fnUpdate( sValue, aPos[0], aPos[1] );
},
"height": "14px"
} );
oTable = $('#datos').dataTable({
bPaginate: false
});
// maquillaSearchBox()
});
function fnShowHide( iCol )
{
var bVis = oTable.fnSettings().aoColumns[iCol].bVisible;
oTable.fnSetColumnVis( iCol, bVis ? false : true );
}
</script>
No se como, reconoce que columna se va a modificar.
Espero que me puedan ayudar.
Gracias...