Jeditable + Datatables + Mysql. How?

Jeditable + Datatables + Mysql. How?

alekslktaalekslkta Posts: 5Questions: 0Answers: 0
edited May 2011 in General
Hi! Can you help me please with realisation : jeditable + datatables + mysql. How can realised editable rows from mysql. At this time i'm using :
[code]

$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "server_processing.php",
"fnServerData": function ( sSource, aoData, fnCallback ) {
/* Add some extra data to the sender */
aoData.push( { "name": "more_data", "value": "my_value" } );
$.getJSON( sSource, aoData, function (json) {
/* Do whatever additional processing you want on the callback, then tell DataTables */
fnCallback(json)
} );
}
});
});

[/code]
And
[code]

$(document).ready(function() {
/* Init DataTables */
var oTable = $('#example').dataTable();

/* Apply the jEditable handlers to the table */
$('td', oTable.fnGetNodes()).editable( 'save.php', {
"callback": function( sValue, y ) {
var aPos = oTable.fnGetPosition( this );
oTable.fnUpdate( sValue, aPos[0], aPos[1] );
},
"submitdata": function ( value, settings ) {
return {
"row_id": this.parentNode.getAttribute('id'),
"column": oTable.fnGetPosition( this )[2]
};
},
"height": "14px"
});
});

[/code]
in save.php i have update and insert statement into mysql tables. server_processing.php only select from a database. Is it possible to combine jeditable + database + mysql? Do you have some examples of this realisation?
Thank you very much! P.S sorry for my bad english
This discussion has been closed.