当使用jqGrid时,如何强制单元格在页面加载时的可编辑视图中加载以及单击它时是什么?
如果您设置如下所示的“单元格编辑”,则仅在单击单元格时才会显示复选框。
{ name: 'MyCol', index: 'MyCol', editable:true, edittype:'checkbox', editoptions: { value:"True:False" },
cellEdit:true,
同样点击复选框,有没有办法立即向服务器发送AJAX帖子而不必依赖用户按Enter键?
答案 0 :(得分:78)
要允许复选框始终可点击,请使用复选框格式化程序的disabled
属性:
{ name: 'MyCol', index: 'MyCol',
editable:true, edittype:'checkbox', editoptions: { value:"True:False"},
formatter: "checkbox", formatoptions: {disabled : false} , ...
要回答第二个问题,您必须为复选框设置一个事件处理程序,这样当单击一个函数时,会调用一个函数,例如,向服务器发送一个AJAX POST。这里有一些示例代码可以帮助您入门。您可以将其添加到loadComplete
事件:
// Assuming check box is your only input field:
jQuery(".jqgrow td input").each(function(){
jQuery(this).click(function(){
// POST your data here...
});
});
答案 1 :(得分:6)
这是一个旧的,但有很多观点所以我决定在这里添加我的解决方案。
我正在利用JQuery的.delegate函数创建一个后期绑定实现,使您免于使用loadComplete事件的义务。
只需添加以下内容:
$(document).delegate('#myGrid .jqgrow td input', 'click', function () { alert('aaa'); });
这会将该处理程序延迟绑定到网格行上的每个复选框。 如果您有多个复选框列,则可能会出现问题。
答案 2 :(得分:3)
我遇到了同样的问题,我想我找到了一个很好的解决方案来立即处理复选框。主要思想是在用户单击不可编辑的复选框时触发editCell方法。这是代码:
jQuery(".jqgrow td").find("input:checkbox").live('click', function(){
var iRow = $("#grid").getInd($(this).parent('td').parent('tr').attr('id'));
var iCol = $(this).parent('td').parent('tr').find('td').index($(this).parent('td'));
//I use edit-cell class to differ editable and non-editable checkbox
if(!$(this).parent('td').hasClass('edit-cell')){
//remove "checked" from non-editable checkbox
$(this).attr('checked',!($(this).attr('checked')));
jQuery("#grid").editCell(iRow,iCol,true);
}
});
除此之外,您应该为网格定义事件:
afterEditCell: function(rowid, cellname, value, iRow, iCol){
//I use cellname, but possibly you need to apply it for each checkbox
if(cellname == 'locked'){
//add "checked" to editable checkbox
$("#grid").find('tr:eq('+iRow+') td:eq('+iCol+') input:checkbox').attr('checked',!($("#regions").find('tr:eq('+iRow+') td:eq('+iCol+') input:checkbox').attr('checked')));
//trigger request
jQuery("#grid").saveCell(iRow,iCol);
}
},
afterSaveCell: function(rowid, cellname, value, iRow, iCol){
if(cellname == 'locked'){
$("#grid").find('tr:eq('+iRow+') td:eq('+iCol+')').removeClass('edit-cell');
}
},
然后,每次用户点击时,您的复选框都会发送修改请求。
答案 3 :(得分:2)
我有一个提交功能,可以将所有网格行发送到网络服务器。
我使用以下代码解决了这个问题:
var checkboxFix = [];
$("#jqTable td[aria-describedby='columnId'] input").each(function () {
checkboxFix.push($(this).attr('checked'));
});
然后我混合了下面代码中的值。
$("#jqTable").jqGrid('getGridParam', 'data');
我希望它有所帮助。
答案 4 :(得分:1)
我在下面的链接中分享了完整的代码,您可以查看是否需要它。
答案 5 :(得分:1)
更好的解决方案:
<script type="text/javascript">
var boxUnformat = function ( cellvalue, options, cell ) { return '-1'; },
checkboxTemplate = {width:40, editable:true,
edittype: "checkbox", align: "center", unformat: boxUnformat,
formatter: "checkbox", editoptions: {"value": "Yes:No"},
formatoptions: { disabled: false }};
jQuery(document).ready(function($) {
$(document).on('change', 'input[type="checkbox"]', function(e){
var td = $(this).parent(), tr = $(td).parent(),
checked = $(this).attr('checked'),
ids = td.attr('aria-describedby').split('_'),
grid = $('#'+ids[0]),
iRow = grid.getInd(tr.attr('id'));
iCol = tr.find('td').index(td);
grid.editCell(iRow,iCol,true);
$('input[type="checkbox"]',td).attr('checked',!checked);
grid.saveCell(iRow,iCol);
});
});
</script>
在你的colModel中:
...
{name:'allowAccess', template: checkboxTemplate},
...