easyui-datagrid 行内编辑禁止字段可编辑
Posted LoganNi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyui-datagrid 行内编辑禁止字段可编辑相关的知识,希望对你有一定的参考价值。
function onClickRow(index){
if (editIndex != index){
if (endEditing()){
$(‘#dg‘).datagrid(‘selectRow‘, index)
.datagrid(‘beginEdit‘, index);
// 得到单元格对象,index指哪一行,field跟定义列的那个一样
var cellEdit = $(‘#dg‘).datagrid(‘getEditor‘, {index:index,field:‘attr1‘});
var $input = cellEdit.target; // 得到文本框对象
//$input.val(‘aaa‘); // 设值
$input.prop(‘readonly‘,true); // 设值只读
editIndex = index;
} else {
$(‘#dg‘).datagrid(‘selectRow‘, editIndex);
}
}
}
以上是关于easyui-datagrid 行内编辑禁止字段可编辑的主要内容,如果未能解决你的问题,请参考以下文章
EasyUI 之 easyui-datagrid 字段格式化
bootstrap table 行内编辑 怎么动态指定某个单元格可编辑