如何在codeigniter中控制表格宽度?

时间:2010-04-11 10:14:31

标签: codeigniter

在codeIgnator框架工作中,下面是我的代码正常工作。但我无法控制表格宽度。因此,当一个长值进入表格然后表格将达到​​特大宽度。但我需要包装结果数据。那么,我如何修复表格宽度?请参阅下面的代码..

///控制器代码///

            $config['base_url'] = base_url().'Search_Controller/songSearchPage/';
    $config['total_rows'] = $this->db->count_all('tbl_rbt');
    $config['per_page'] = '5';
    $config['full_tag_open'] = '<p>';
    $config['full_tag_close'] = '</p>';
    $this->pagination->initialize($config);     
    //load the model and get results    
    $data[]=array();
    $data['extraHeadContent'] = '<script type="text/javascript" src="' . base_url() . 'js/song_search.js"></script>';   
    $data['results'] = $this->search_model->getSongResult($config['per_page'],$this->uri->segment(3));      
    // load the HTML Table Class        
    $this->table->set_heading('Song Name','Album Name','Artist Name');                                                      
    // load the view
    $this->load->view('song_search_page',$data);

/////查看代码/////

<div class="song_element_output">
    <?php echo $this->table->generate($results); ?>
    <?php echo $this->pagination->create_links(); ?>                            
</div>

有人可以帮我控制桌子吗?

由于 里亚德

2 个答案:

答案 0 :(得分:1)

codeigniter中的表类不支持表本身的宽度和其他属性,也不支持表格单元格的宽度和其他属性。

您的选择是: Extend the native table library 或者只是在您的视图中以旧式方式创建表格。

答案 1 :(得分:0)

我解决了问题。我使用css文件来控制表格宽度。

在哪个div我使用表生成器短标签... table-&gt; generate($ results); ?&gt; ...我在那个div上使用css。 假设我在div song_element_output上使用短标签,那么我的css将是:

div.song_element_output table
 {
   width:620px;
   font-family:Verdana, Arial, Helvetica, sans-serif;
   font-size:10px;
   border-collapse: collapse;
   border: 1px solid #777;
  }

就是这样。

我的代码示例:

<div class="song_element_output"> <?php echo $this->table->generate($results); ?> <?php echo $this->pagination->create_links(); ?>
</div>

感谢所有人 里亚德