jueves, 11 de abril de 2013

jQuery DataTables: Edit tabla con server processing


"fnDrawCallback": function () {
     /*
                    $('#dt_tramites_archivados tbody td').editable( '..', {
                        "callback": function( sValue, y ) {
                             Redraw the table from the new data on the server 
                            oTableTramitesArchivados.fnDraw();
                        },
                        "height": "20px"
                    } );
     */
     
     $(".user_nombre").css("background-color","rgba(0, 255, 0, 0.5)");
                },
    
                "fnRowCallback": function( nRow, aData, iDisplayIndex ) {
         
                    $('td:eq(0)', nRow).html("");      
                    $('td:eq(2)', nRow).html('
+
aData.legajo + '">' + aData.nombre + '
'); },

No hay comentarios:

Publicar un comentario