I did my application in codeigniter using grocery crud lib. It's work fine.
Now, I want to change it in RWD (Responsive Website Design) mode. I already did RWD in my root CSS file it's work fine. But I used grocery crud in my admin side, I want to…
see this article of the website of grocery-crud:
http://www.grocerycrud.com/documentation/options_functions/add_action
for testing I used this line:
$crud->add_action('Smileys', 'http://www.grocerycrud.com/assets/uploads/general/smiley.png',…
I need to do some customization to the CRUD. Basically i need to upload multiple files in an Add or Edit Action, and all i'm going to save in the database is the url of the folder that will contain the images.
I have been searching the forum, and it…
No problem to use this function 'multiselect field' which show on this website:
http://www.grocerycrud.com/documentation/options_functions/field_type
$crud->field_type('fruits','multiselect',
array( "1" => "banana", "2" =>…
I get the "Fatal error: Cannot access empty property in /Applications/XAMPP/xamppfiles/htdocs/cityland/application/libraries/Grocery_CRUD.php on line 1540" error in this code
public function projectAmenities()
{
$crud = new grocery_CRUD();
…
I wanna integrate grocery curd library in my codeigniter framework.
Please any one help me what are the pros and cons of this library.
Is it flexible, I am going to use multiple table joining and some bigger queries.
I have one question.. How to validate fields data with custom error messages? I use codeigniter, and grocery crud with twitter bootstrap theme, and do some field required, for example:
$crud->set_rules('first_name', 'NAME', 'required'); OR…
I have four tables:
items
*item_id*
vendor_id
title
vendors
*vendor_id*
title
vendor_locations
*location_id*
title
vendors_vendor_locations
vendor_id
vendor_location_id
priority
This is my…
I have a site developed in crud with codeigniter.
I would when I enter into a determinate function in my view to trigger the button dhx_cal_next_button that goes on of a week for example.
I have tried but nothing…
I have one problem in GroceryCrud.
I want to insert the data in one table. Table is like this:
id, card_no, site_code, site_no
card_no is unique and i have implemented it.
However; my problem is that site_code and site_no should be unique only is…
In Grocery Crud and Codeigniter , Basically i want to show data from one table(such as a_tbl) when select data or id_no(id_no will get from a_tbl) in dropdown then Name and current posting data will take in input field from table(such as a_tbl) ,…
On my users table I have a 128 char 'hashed_password' field. In my User_model I have functions to encrypt and decrypt the password. When encrypting I randomly generate a salt and it gets stored in the first 64 chars of hashed_password field. The…
I'm having trouble understanding how to place grocery_CRUD into a view.
My function in my control looks like this:
function folio()
{
$crud = new grocery_CRUD();
$crud->set_table('rfid');
$crud->columns('rfid','timestamp');
$data['output'] =…
Grocery Crud provides the function order_by:
void order_by(mixed $order_by [, string $direction] )
However the field I need to sort is a varchar and I need to perform natural sorting. The MySQL query which correctly sorts the list is as…
I’m using Grocery CRUD to display my search results. The results are displayed properly but the search and sort by columns doesn’t seem to be working.
Secondly ..im using the set_model to use my model to grab data..
function get_list()
{
$name =…