开发者

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

开发者 https://www.devze.com 2023-01-29 14:07 出处:网络
I am working in MVC & using jquery.jeditable plugin for inplace editing in grid.It al开发者_StackOverflowlows me to perform cell edit one at a time, can you please let me know how can i make the f

I am working in MVC & using jquery.jeditable plugin for inplace editing in grid.It al开发者_StackOverflowlows me to perform cell edit one at a time, can you please let me know how can i make the full row editable with jeditable plugin ?


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

精彩评论

暂无评论...
验证码 换一张
取 消