如何使用可插入插件使整行可编辑?

时间:2010-12-06 06:34:26

标签: jquery jeditable

我在MVC& amp;使用jquery.jeditable插件在grid中进行内部编辑。它允许我一次执行一个单元格编辑,请你告诉我如何使用jeditable插件编辑整行?

1 个答案:

答案 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');
        });
});