繁体   English   中英

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

[英]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');
        });
});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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