gpt4 book ai didi

html - 使用 CodeIgniter HTML 表格类,如何添加额外的列?

转载 作者:行者123 更新时间:2023-11-28 04:08:21 24 4
gpt4 key购买 nike

添加行似乎很容易,但我想向我的数据中添加带有复选框的列,以便您可以“编辑”或“删除”该行。

有什么 CI 友好的方法可以做到这一点?

最佳答案

像这样手动设置标题和列,在最后一列中插入您需要的任何内容...

$this->table->set_heading('Heading One', 'Heading Two', ... , 'Links'); //set your headings

foreach($data_rows as $row) { //set your rows here

// first build links for this row assuming you need the urls to
// look like 'http://domain/index.php/controller/{action}/{id}
$links = anchor('controller/edit/'.$row->id ,'Edit');
$links .= anchor('controller/delete/'.$row->id , 'Delete');

$this->table->add_row(
$row->heading_one,
$row->heading_two,
...,
$links, //add the links you created to the last row, corresponding to your 'Links' Header
);
}

echo $this->table->generate();

关于html - 使用 CodeIgniter HTML 表格类,如何添加额外的列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5263050/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com