2
我有這樣的一段代碼...Jeditable +數據表+服務器端處理
$(document).ready(function() {
var oTable = $('#example').dataTable({
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "../listagem/listar_manuais.php",
"sPaginationType": "full_numbers",
"fnDrawCallback": function() {
$('td', this.fnGetNodes()).editable('update.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') };
},
"height": "14px"
});
}
});
});
它的作用是在服務器端搜索數據表的...
我的問題是,我不不知道該從這裏做什麼,以獲得與服務器端處理的Jeditable功能...
任何人都可以幫忙嗎? :s
任何人都可以幫忙嗎? = | – nunong21 2012-08-02 08:48:08