0

我在 MVC 中工作并使用 jquery.jeditable 插件在网格中进行就地编辑。它允许我一次执行一个单元格编辑,你能告诉我如何使用 jeditable 插件使整行可编辑吗?

4

1 回答 1

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');
        });
});
于 2010-12-27T04:12:43.833 回答