The CodeIgniter application was developed much earlier without plans to integrate ReactJS at that time. A later requirement was added to integrate another ReactJS project with this backend and replace the current frontend (views).
The CodeIgniter…
I am using CodeIgniter for my website. I am currently trying to implement an admin section where I've to enable CRUD features.
I searched online and came across two different extensions for CI.
Grocerycrud http://www.grocerycrud.com
Carbogrid…
I am working with Grocery CRUD (PHP library that creates a full functional CRUD) and I have very basic table of users.
id | first_name | last_name
Some of this users are relatives. So I want to have separate relation table that looks like
id |…
I stucked in a Problem When Playing with Drop Downs.I tried to use this
http://www.grocerycrud.com/forums/topic/1087-updated-24112012-dependent-dropdown-library/
But actually my requirement is quite different. I have a table fwld_products in which…
In grocery crud, searching is not happening for related tables.
Searching is only happening for that table fields.
function index() {
$crud = new grocery_CRUD();
$crud->set_theme('flexigrid');
$crud->set_table('table_name');
…
I have to tables with these schema:
users(id, name, email)
user_details (id, user_id, physical_address, otherinfo)
I would like to display all contents of both tables in one grid using grocery crud
when i try to use set relation on the first table…
I have seen many people referring to the usage of call_user_func() to debug the problems in a Grocery_CRUD callback, but unfortunately no one has come off with a complete example to actually how to use it like where to to place a call to the test…
I have been trying to show rows without duplicates but the query isn't working properly. I think the problem is one to many relationship, because one 'intervaloHorario' has many 'citas'. So, for example, i want to show only: 'From 8:00 to 15:00…
Is there a way to make a specific column right-aligned that was rendered by Grocery CRUD?
In my case, I want to specifically right-align the column Bonus Value only.
Your help will be highly appreciated.
I have done the example and installed everything.
The read or display method of table works correctly, but whenever I try to add, delete or edit a registry a windows appears and say:
404 Page Not Found
The page you requested was not found.
Here is…
I am trying to change column value using callback_column function.
$crud = new grocery_CRUD();
$crud -> set_table('booking');
//$crud->set_relation('room_id','rooms','name');
$crud->callback_column('room_id',array($this,'_visitor_details_popup'));…
I am working on session data where the email is loaded automatically when user enters new record in grocery crud table. On the top of page , the name /email of current user can be displayed by using (in view folder)
I have three tables (simplified) which are:
And I have to display all houses for each user.
In my controller I have a function like this:
public function create_houses_table($usr_id)
{
$crud = new grocery_CRUD();
…
Hi I am using Grocery CRUD with HMVC and I am facing some strange problem with that.
class Source extends MX_Controller
{
function __construct() {
parent::__construct();
}
function index(){
try{
$crud…
I just code with GroceryCRUD,
This is my Database:
a_guest_data
guest_no
register_date
name
gender
birthday
address
city
country
phone
email
ref
status
date_modified
a_table_data
id_table
tbl_name
group_name
status
seat…