欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

BootStrap Table 后台数据绑定、特殊列处理、排序功能

程序员文章站 2023-11-14 11:57:16
本节主要介绍bootstrap的后台数据绑定、特殊列处理及列的排序功能 1.数据绑定  一般做程序设计,很少是使用json文件直接绑定数据。基本上我们都是使用...

本节主要介绍bootstrap的后台数据绑定、特殊列处理及列的排序功能

1.数据绑定

 一般做程序设计,很少是使用json文件直接绑定数据。基本上我们都是使用编程语言进行数据获取,并做数据绑定。

放置一个table控件

<table id="table" ></table>

调用javascript的代码

<script >
$('#table').bootstraptable({
  url: 'tablejson.jsp',  //数据绑定,后台的数据从jsp代码
  search:true,      
  uniqueid:"id",
  pagesize:"5",
  pagenumber:"1",
  sidepagination:"client",
  pagination:true,
  height:'400',
  columns: [
  {
    field: 'id',
    title: '中文'
  }, {
    field: 'name',
    title: 'name'
  }
  , {
    field: 'desc',
    title: 'desc'
  }
  ],
});

2.特殊列处理

 在实际应用中,我们需要增加我们的特殊列,例如是操作列,看下列的js代码 增加了一个特殊列

{
    field: '#',
    title: 'control',formatter:function(value,row,index){
    var del='<a href="delete!delete.action?id='+row.id+'" rel="external nofollow" rel="external nofollow" >删除</a>';
    var updt='<a href="supdate.jsp?id='+row.id+'" rel="external nofollow" rel="external nofollow" >修改</a>';
    var add='<a href="include.jsp?id='+row.id+'" rel="external nofollow" rel="external nofollow" >增加</a>'
    return del+" "+updt+"&nbsp"+add;
    }
  } 

js的代码修改为

<script >
$('#table').bootstraptable({
  url: 'tablejson.jsp',  //数据绑定,后台的数据从jsp代码
  search:true,      
  uniqueid:"id",
  pagesize:"5",
  pagenumber:"1",
  sidepagination:"client",
  pagination:true,
  height:'400',
  columns: [
   
  {
    field: 'id',
    title: '中文'
  }, {
    field: 'name',
    title: 'name'
  }
  , {
    field: 'desc',
    title: 'desc'
  }
,
{
    field: '#',
    title: 'control',formatter:function(value,row,index){
    var del='<a href="delete!delete.action?id='+row.id+'" rel="external nofollow" rel="external nofollow" >删除</a>';
    var updt='<a href="supdate.jsp?id='+row.id+'" rel="external nofollow" rel="external nofollow" >修改</a>';
    var add='<a href="include.jsp?id='+row.id+'" rel="external nofollow" rel="external nofollow" >增加</a>'
    return del+" "+updt+"&nbsp"+add;
    }
  }
], }); 

3.列的排序,排序主要是在列中增加了一个属性

{
    field: 'name',
    title: 'name',<br><em id="__mcedel">sortable:true</em>
}

以上所述是小编给大家介绍的bootstrap table 后台数据绑定、特殊列处理、排序功能,希望对大家有所帮助