简体   繁体   中英

How can I make the full row editable with jeditable plugin?

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

$('#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');
        });
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM