我正在使用CI来生成表格
$query = $this->expenses_model->expenses_table();
//gary's code went here
$this->load->library('table');
$tmpl = array ('table_open' => '<table class="table">');
$this->table->set_template($tmpl);
// gary added 'Edit' at end of array
$this->table->set_heading('Date', 'Plant', 'Expense', 'Category', 'Notes');
//when using gary's code, changed $query below to $data
$table['tab'] = $this->table->generate($query);
$this->load->view('vw/exp/expenses_vw', $table, TRUE);
使用
在客户端运行jQuery DataTables$(document).ready(function() {
/* Init DataTables */
var oTable = $('.table').dataTable( {
"bJQueryUI": true,
"sScrollX": "",
"bSortClasses": false,
"aaSorting": [[0,'desc']],
"bAutoWidth": true,
"bInfo": true,
"sScrollY": "100%",
"sScrollX": "100%",
"bScrollCollapse": true,
"sPaginationType": "full_numbers",
"bRetrieve": true
} );
} );
问题#1
数据库中的每条记录都有一个唯一的自动增量ID record_id
,需要传递给每一行。但是这个record_id
列不能显示在前端(即需要隐藏)。我们如何通过CI做到这一点?
问题#2 我应该使用什么样的JS来允许用户点击该行并获得带有编辑/删除表单的弹出窗口?
感谢您的帮助!
PS - 这是生成表数据的模型
function expenses_table()
{
$id = $this->tank_auth->get_user_id();
$this->db->select('record_id, date_format(date, \'%c/%d/%Y\'), plant_name, concat(\'$ \', format(value_1, 2)), value_2, value_3', FALSE);
$this->db->from('data');
$this->db->join('plants', 'plants.plant_id = data.plant_id_fk');
$this->db->where('category_1', 'expenses');
$this->db->where('data.id_fk', $id);
$this->db->order_by("date", "desc");
$query = $this->db->get();
return $query;
}
答案 0 :(得分:2)
<强> 1。添加新列Edit
$this->table->set_heading('Date', 'Plant', 'Expense', 'Category', 'Notes', 'Edit');
<强> 2。根据每条记录的record_id构建编辑链接,并隐藏record_id
$data = array();
while ($row = $query->result_array())
{
$anchor = '<a href="#" class="edit_record" record_id="' . $row['record_id'] . '">Edit</a>';
// Hide the record_id in the table output
unset($row['record_id']);
// Let's add the link so we can edit this entry
$row[] = $anchor;
// Lets push the new row so it can be output
$data[] = $row;
}
$table['tab'] = $this->table->generate($data);
第3。使用jQuery与行交互:
$('a.edit_record').click(function() {
var record_id = this.attr('record_id');
// Lets generate the magical lightbox here...
});
有很多可用于jQuery的灯箱插件,可以接受HTML。您需要做的就是创建一个处理请求的ajax控制器,使用模型编辑/删除并以JSON格式返回结果。