Load Addon

Navigation:  Development > Addons >

Load Addon

Previous pageReturn to chapter overviewNext page

Loading is the main key point of an addon. Always Load type addon load on every page but by default onRequest addon do not load resource in every page, We have to request it from Action Method to load in the page only. We use following variable in action to load

 
$this->addons = array(addon1, addon2.... addonN)

 

For example :
$this->addons = array('validation','rich_text_editor','row_manager');

 

Default addons are

 

Parameter

Description

Load

960grid

Add Grid Framework

Always

ckeditor

Add CKE Editor

onRequeset

cssbuttons

HTML Attributes

Always

cufon

Add cufon to see pretty text

Always

cycle

Use to create presentation

Always

datagrid

Use to create Data with Grid

onRequeset

dialogs

Create Dialog For admin panel

onRequeset

forms

Validation and AJAX Submit

onRequeset

linedtextarea

Create lined text area

onRequeset

row_manager

Delete row in data gried..

Always

tab

Create Tab

onRequeset

uploadify

Upload batch image

onRequeset