Skip to content

yiiext/markitup-widget

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Markitup widget

Adds markItUp widget (v. 1.1.14) as a form field widget.

Installation

Unpack to protected/extensions.

Usage

[php]
<?php $this->widget('ext.yiiext.widgets.markitup.EMarkitupWidget', array(
    // you can either use it for model attribute
	'model' => $my_model,
	'attribute' => 'my_field',

	// or just for input field
    'name' => 'my_input_name',
))?>