I have a multistep form which is called "card"
This form must contain sevral information of a person, what person has done, the job of person, tools person used etc.
To solve this and make it more cool I made a multiform step form, so when user…
Hi all I have a site develop in codeigniter with crud.
Into my insert view I have a select where I want to put in default a value, I have done int his mode (the name of the filed is id_company)
$crud = new grocery_CRUD();
$state_crud =…
I desperately need to make the Grocery CRUD (Codeigniter) to be able to use multiple image upload with thumbnail preview for the uploaded images.
jQuery File Upload is what I need, but I really don't know how to integrate it or use it together with…
i have recently downloaded grocery from their site and i am having a small problem in loading views with a template ..
as in controller the function of loading view look like this
function _example_output($output = null)
{
…
I have a CI view which uses jquery tab to show some content. One of the tabs loads another controller which uses grocery crud. So the initial display is embeded inside this view. However if I try to edit or update it opens it in a completely…
Originally I had my entity classes (PHP with annotations for Doctrine) in the models folder of my CodeIgniter setup. I decided this wasn't such a great idea so I moved all of my entities into an "Entities" folder and updated my Doctrine.php file…
i'm having problem with codeigniter + grocery crud installation.
Below is my file structure:
base/ci_213/application/demo/config/config.php
$config['base_url'] = 'http://localhost/';
$config['index_page'] =…
i follow the guide in Grocery CRUD web documentation http://www.grocerycrud.com/examples/callback_edit_field_example
i guess this is one of the ways to set default value for your input field when insert. I am trying to set the default value for date…
In GroceryCRUD i am getting the data from a table with these fields (as they appear in order in MYSQL)
id,
date_added,
views,
outhits,
clicks,
title,
description
and i want title + description to be at the top of the form when entering new rows or…
I am using codeigniter + grocerycrud. I have a callback for image uploads.
I upload one image in the form, but want to do this:
copy it 3 times
resize each one a certain size
then save each one in the database.
any ideas how to do this? The callback…
I am working on the admin section of a website in codeigniter. I am using Grocery CRUD for the
add edit delete operations. I've used 'set_field_upload' function to provide a video upload field inside the form. I need to add a thumbnail for the…
I have setup Codeigniter on my server and I installed Grocery crud on it. Unfortunately server is windows based and does not support url rewriting and I am stuck using Grocery crud with it.
Can someone explain the solution to this, as I searched…
So I have made a simple site for a friend using codeigniter and grocery crud v1.2, it works well for uploads in all browsers except when I try it on a iphone. For some reason the "choose file" button appears but seems unclickable on the iphone…
By overriding the delete function of GroceryCRUD as below, we can easily soft-delete a record.
public function user() {
$crud = new grocery_CRUD();
$crud->set_table('cms_user');
$crud->set_subject('User List');
…