我在MVC& amp;使用jquery.jeditable插件在grid中进行内部编辑。它允许我一次执行一个单元格编辑,请你告诉我如何使用jeditable插件编辑整行?
答案 0 :(得分:0)
$('#rowId td').editable("url_here", {
onblur : 'ignore',
event : 'make_cell_editable"
//other options here
});
$('#rowId').click(function (){
$(this).each(function (){
$(this).trigger('make_cell_editable');
});
});