ajax-crud-behavior Single Page CRUD operations on ActiveRecord models with controller behavior inherited AJAX actions

AjaxCrudBehavior

  1. LIVE DEMO
  2. GITHUB REPOSITORY
  3. Overview
  4. Requirements
  5. Setup.
  6. Resources

Single Page CRUD operations on ActiveRecord models with controller behavior inherited AJAX actions

© 2013 Spiros Kabasakalis

[The MIT License (MIT)]( http://opensource.org/licenses/MIT)

AjaxCrudBehavior

LIVE DEMO

GITHUB REPOSITORY

Overview

Create, update and view details of records in a fancybox pop up. Single and bulk deletions with modal dialog prompt (noty plugin). This is actually a complete rewrite of my ajaxcrudgiitemplate extension. Instead of gii generated files,I wrote a reusable behavior that adds controller actions and eliminates repetition of code across different controllers.Javascript has been moved to a js file resulting in cleaner code.

Requirements

Yii 1.1.12 or above,may work with older versions too.

Setup.

  • Hide index.php from your requests,if you have'nt done so yet.You can find detailed instructions on how to do this here.(Paragraph 6) Also,in urlManager configuration in config/main.php file set
'urlFormat'=>'path',
 'showScriptName'=>false,
  • Copy js_plugins folder in webroot folder.I don't like publishing assets.I register css and jss straight from a webroot subfolder.
  • Copy css folder with icons to webroot.
  • Copy behaviors folder containing AjaxCrudBehavior.php class file to protected folder.
  • Copy BootPager.php and BaseController.php to components folder.
  • Prepare the database table for your ActiveRecord model,say Product.(example product.sql provided).
  • Create the model ActiveRecord class file that corresponds to product table,(example Product.php). The only requirement is that it includes a search function that returns a CActiveDataProvider instance to populate CGridView:
public function search($pagination)
 	{
 		// Warning: Please modify the following code to remove attributes that
 		// should not be searched.
 		$criteria=new CDbCriteria;

        //example,fill in with your model property names.
 		$criteria->compare('id',$this->id,true);
 		$criteria->compare('name',$this->name,true);
 		$criteria->compare('description',$this->description,true);
 		$criteria->compare('price',$this->price,true);

 		return new CActiveDataProvider($this, array(
 			'criteria'=>$criteria,
             'pagination' => array(
             'pageSize' =>$pagination,
                       ),
 		));
 	}
 ~~~

- Write a controller for the model.The only requirement for the controller is that includes the code below and
  extends from BaseController.

[php] class [ MODEL CLASS NAME ] Controller extends BaseController { public function init(){

$this->ajaxCrudBehavior->register_Js_Css();
parent::init();

}

public function behaviors()
   {
       return array(
               'ajaxCrudBehavior' => array('class' => 'application.behaviors.AjaxCrudBehavior',
               'modelClassName' =>'[MODEL CLASS NAME(ex.Product)]',
               'form_alias_path' =>'[FORM PATH ALIAS (ex.application.views.product._form)]',
               'view_alias_path' =>'[VIEW PATH ALIAS (ex.application.views.product._view)]' ,
               'pagination'=>'10'      //page size for CGridView pagination
           )
       );
   }

... Your controller code ... } ~~~ Templates for the form and view files are provided,you will only need to modify property names and input fields for your specific model and copy to view folder of your controller.

  • Last,you need to configure property columns for the CGridView in admingrid.php and copy it to controller's view folder. Again,a template is provided-it's straightforward.
  • Make sure you include jquery before any other scripts.Either uncomment the relevant line in register_Js_Css() function of AjaxCrudBehavior or register it somewhwere else in your code.
  • Example files use bootstrap styled markup.Uncomment the relevant line that registers bootstrap.css in register_Js_Css() function of AjaxCrudBehavior if it's not already registered somewhere else in your application.
  • Navigate to /[controllerID]/admingrid to render the administration page.
  • Example files for model,controller,form and view files are provided.

Resources

7 0
18 followers
2 061 downloads
Yii Version: 1.1
License: MIT
Category: Database
Developed by: drumaddict
Created on: Feb 6, 2013
Last updated: 11 years ago

Downloads

show all

Related Extensions