How to control table width in code ignator?
- by riad
Dear Exparts,
In codeIgnator frame work the below is my code working properly.But i cannot control the table width. So,when a long value come into the table then table going to extra large width.But i need to wrap the outcomes data.So,How i can fixed the table width? Pls see my code below..
///controller code///
$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);
/////view code/////
<div class="song_element_output">
<?php echo $this->table->generate($results); ?>
<?php echo $this->pagination->create_links(); ?>
</div>
Could anybody can help me to control the table???
Thanks
Riad