codeigniter html表格

来源:互联网 发布:淘宝网天天特价9.9 编辑:程序博客网 时间:2024/04/27 22:18

需求要求在前段体现表格,codeigniter自己提供的 html表格类,
这个表格类可以邦定多为数组和直接返回的数据查询
1 绑定多为数组
$this->load->library('table');
  
  
$databyarray = array(
       
          array('Name', 'Color'),
      
          array('aa', 'Colbbor'),

);

echo $this->table->generate($databyarray);
效果如下


2 绑定返回的数据查询
$this->db->from('production');
 
$query = $this->db->get();
echo $this->table->generate$query
效果如下


codeigniter还提供了好多函数,可以美化 html表格和一些额外的功能
例如
设定模板
$this->table->set_template($tmpl); 
设定表头
table->set_heading()
个人理解这个html类就是个类是asp.net datagrid的服务器端控件,
调整这个表格控件的外观,分业处理等功能不是很灵活,
以前作sharepoint开发时,用了个客户端的控件感觉不错打算用它了
http://datatables.net/

 

原创粉丝点击