简体   繁体   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.

相关问题 jQuery DataTable - 添加新行,但无法使其可编辑(可编辑) - jQuery DataTable - Add new row works, but not able to make it editable (jeditable) 使用jQuery,jEditable,jeditable-rails gem或任何AJAXy解决方案使表行可编辑 - Make table row editable using jQuery, jEditable, jeditable-rails gem or any AJAXy solution 我如何使parsley.js插件与可编辑插件一起使用 - How do i make parsley.js plugin work with jeditable plugin 可编辑的插件-所有列均可同时编辑 - Jeditable plugin - All columns editable at same time Javascript范围和匿名函数:如何将参数对象传递给jQuery jEditable插件? - Javascript scope and anonymous functions: How can I pass a parameter object to jQuery jEditable plugin? 如何使UI元素可编辑? - How can I make a UI element editable? 如何使Jeditable使用Bootstrap按钮类进行确定/取消? - How can I make Jeditable use the Bootstrap button classes for Ok/Cancel? 如何使Jeditable(jQuery)跨度激活多个事件的编辑? - How can I make a Jeditable (jQuery) span activate editing on more than one event? 如何使用x-editable和jquery验证插件 - How can I use x-editable and jquery validation plugin 使用jquery + jeditable + bootstrap在表上添加可编辑的新行 - Using jquery + jeditable + bootstrap to add editable new row on a table
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM