簡體   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