delete row from table with server processing

delete row from table with server processing

mcpallsmcpalls Posts: 7Questions: 0Answers: 0
edited June 2010 in General
hi i have a problem, I am unable to delete a row from a table generate with server_processing.

my 2 files is :

test.php
[code]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">





DataTables example

@import "media/css/demo_page.css";
@import "media/css/demo_table.css";







var oTable;
var giRedraw = false;

$(document).ready(function() {
/* 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');
});

/* Add a click handler for the delete row */
$('#delete').click( function() {
var anSelected = fnGetSelected( oTable );

oTable.fnDeleteRow( anSelected[0] );
} );


var oTable = $('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sPaginationType": "full_numbers",
"iDisplayLength": 10,
"bSortClasses": false,

"sAjaxSource": "server_processing.php"

} );




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

for ( var i=0 ; i

Replies

  • mcpallsmcpalls Posts: 7Questions: 0Answers: 0
    i solved my problem :) :)
    I managed to remove the row from the Dom with fadeout effect and by calling the ajax remove it from db and after refresh the table (initialising it with bDestory": true parameter), I also customized the sample query with my query.
    Jquery Datatables r0x :)
This discussion has been closed.