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');
});
});
精彩评论