bootstrap-table怎么隐藏复选框那一列?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bootstrap-table怎么隐藏复选框那一列?相关的知识,希望对你有一定的参考价值。
需要js控制显示隐藏?
$('#itemtable').bootstrapTable('hideColumn', '0');
$('#itemtable').bootstrapTable('hideColumn', 'check');
都不管用。该怎么写?
数据库 C# datagridview可不可以让某一列禁止被更改
DataGridView控件可以在属性里面设定只读,但是能不能设置一下,只让这个表里面的第一列是只读的,而其它是可改的,因为我的第一列是主键,不能被更改啊
把你要设置的那一列设置为只读,如果是第一列的话:dataGridView1.Columns[0].ReadOnly = true;
或者是你设置的主键名:
dataGridView1.Columns[主键名].ReadOnly = true;
这样就好了 参考技术A 打开“编辑列”,选中第一列,右边的属性里面就有ReadOnly这艺术性,设置成True就OK了 参考技术B 可以啊,只需要将该列的ReadOnly属性设置为true就行
dataGridView1.Columns[“列名”].ReadOnly=true; 参考技术C DataGridView 的CellEnter时间下增加代码:
private void dataGridView1_CellEnter(object sender, DataGridViewCellEventArgs e)
if (dataGridView1.CurrentCell.ColumnIndex == 0)
dataGridView1.CurrentCell.ReadOnly = true;
else
dataGridView1.CurrentCell.ReadOnly = false;
本回答被提问者和网友采纳 参考技术D 看看 有没有 那一列的 readonly 属性 。追问
怎么看?
追答禁止那列 写上代码啊 dataGridView1.Columns[第几列].ReadOnly = true ; 有这个属性
以上是关于bootstrap-table怎么隐藏复选框那一列?的主要内容,如果未能解决你的问题,请参考以下文章
各位大侠我想知道怎么通过jQuery获取table的表头和最左边那一列???