私はASP.NET MVC 3で動作するPHPでのコールバックを設定するJavaScriptのこの作品を変換しようとしている:ASP.NETでJavaScriptコールバックを実装していますか?
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
/* Init DataTables */
var oTable = $('#example').dataTable();
/* Apply the jEditable handlers to the table */
$('td', oTable.fnGetNodes()).editable('table/examples_support/editable_ajax.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"
});
});
</script>
だから基本的には代わりにASP.NETとjEditable仕事を作る方法をうまくしようとしていますPHPの...
JavaScriptファイルではなく、編集中のファイルです。 –