简体   繁体   English

php CRUD框架/ CodeIgniter的附加组件具有多行编辑功能?

[英]php CRUD framework/add-on for CodeIgniter with multi-row edit capability?

I'm currently using Grocery CRUD as my easy-to-implement standard for a basic CRUD system on a CodeIgniter project. 我目前正在使用Grocery CRUD作为CodeIgniter项目上基本CRUD系统的易于实现的标准。 I now have a data manipulation use-case in which the ability to edit multiple table/database rows at the same time would be ideal. 我现在有一个数据处理用例,其中可以同时编辑多个表/数据库行是理想的。 Basically I'm looking for the Update functionality within the list view. 基本上,我在列表视图中寻找更新功能。 Any PHP framework/add-on suggestions that have this multi-row edit built in? 有内置多行编辑的任何PHP框架/附加建议吗?

This isn't specifically for CodeIgniter, but if you're using MYSQL, LM CRUD will work. 这不是专门针对CodeIgniter的,但是如果您使用的是MYSQL,则可以使用LM CRUD If you add field names to the grid_input_control array you can edit multiple rows from the grid view. 如果将字段名称添加到grid_input_control数组,则可以从网格视图编辑多行。

$lm->grid_input_control['is_active'] = '--checkbox'; $ lm-> grid_input_control ['is_active'] ='--checkbox';
$lm->grid_input_control['field_name'] = '--text'; $ lm-> grid_input_control ['field_name'] ='--text';

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM