我有一个表格,我使用jEditable。
保存到服务器有效,但刷新我的表元素(我刚编辑并保存到服务器)的回调不工作。
/* Apply the jEditable handlers to the table */
$('#example tbody td').editable( '<%= url_for :controller => 'impact_matrix', :action => 'post', :scenario => params[:id] %>', {
"callback": function( sValue, y ) {
^ goes missing
var aPos = oTable.fnGetPosition( this );
oTable.fnUpdate( sValue, aPos[0], aPos[1] );
},
"submitdata": function ( value, settings ) {
temp = value
return { "row_id": this.parentNode.getAttribute('id') };
},
sValue(我在代码中指出) - 似乎是空白的。
我得到aPos [0]和aPos [1]的值,但不是sValue。
有人可以向我解释'触发回调功能的原因吗?'
或者,如果我能看到在哪里获得'新编辑的文本',然后在那上运行fnUpdate(),我会没事的。
提前感谢您的帮助。