bootstrap fuelux datagrid表头怎么添加checkbox多选框

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bootstrap fuelux datagrid表头怎么添加checkbox多选框相关的知识,希望对你有一定的参考价值。

参考技术A winform datagridview表头怎么增加复选框,点击表头的复选框,下面行的复选全选或全未选
2011-03-08 14:22
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1

publicpartialclass Form1 : Form

private DataGridView DataGridView1 =new DataGridView();
private CheckBox CheckBox1 =new CheckBox();

public Form1()

InitializeComponent();


privatevoid Form1_Load(object sender, EventArgs e)

CheckBox1.CheckedChanged += CheckBox1_CheckedChanged;
DataGridView1.CellPainting += DataGridView1_CellPainting;

this.DataGridView1.AllowUserToResizeRows =false;
this.DataGridView1.AllowUserToResizeColumns =false;
this.DataGridView1.Dock = DockStyle.Fill;

this.DataGridView1.Columns.Add(new DataGridViewCheckBoxColumn());
this.DataGridView1.Columns.Add("Column2", "Column2");

for (int i =1; i <=3; i++)

this.DataGridView1.Rows.Add(0, "Row"+ i.ToString() +" Column2");


this.CheckBox1.Visible =false;
this.CheckBox1.Text ="CheckBox";

this.Controls.Add(DataGridView1);
this.Controls.Add(CheckBox1);


privatevoid CheckBox1_CheckedChanged(object send, System.EventArgs e)

for (int i =0; i <=this.DataGridView1.RowCount -1; i++)

this.DataGridView1.Rows.SharedRow(i).SetValues(CheckBox1.Checked);



privatevoid DataGridView1_CellPainting(object sender, System.Windows.Forms.DataGridViewCellPaintingEventArgs e)

if (e.RowIndex ==-1& e.ColumnIndex ==0)

Point p =this.DataGridView1.GetCellDisplayRectangle(e.ColumnIndex, e.RowIndex, true).Location;
p.Offset(this.DataGridView1.Left, this.DataGridView1.Top);
this.CheckBox1.Location = p;
this.CheckBox1.Size =this.DataGridView1.GetCellDisplayRectangle(e.ColumnIndex, e.RowIndex, false).Size;
this.CheckBox1.Visible =true;
this.CheckBox1.BringToFront();




本回答被提问者和网友采纳

bootstrap table 插件 搜索

以前用过easyui datagrid 每次搜索的时候调用datagrid构造方法 重新获取数据,

 

发现bootstrap-table 插件不行,只需要初始化一次,

以后每次搜索时,直接调用refresh 方法,

 

 

bootstrap-table分页:

 

 

1,设置 sidePagination=‘server‘

2,设置 分页参数

function queryParams(params) {

return {
pageSize: params.limit,

pageNumber: params.pageNumber,

};

}

 

3,设置 queryParams: queryParams,

 

$(‘#tableList‘).bootstrapTable({
method: ‘post‘,
url: "/test/getData",
height: $(window).height() - 200,
striped: true,
dataType: "json",
pagination: true, 

sidePagination=‘server‘,

queryParams: queryParams,

....});

 

以上是关于bootstrap fuelux datagrid表头怎么添加checkbox多选框的主要内容,如果未能解决你的问题,请参考以下文章

使用自定义主干集合构建fuelux datagrid数据源

ReferenceError:在 datagrid.js 中嵌入燃料时未定义定义

java 基于 bootstrap_datagrid 分页

fuelux.tree,动态加载

aceAdmin fuelux tree 从后台获取数据,并设置节点ID等属性

从Silverlight到ExtJS再到BootStrap,DataTable(DataGrid)的样式格式化原理没变