views:

31

answers:

1

the result i want is a textarea that hooks up to WMD (markdown editor). and include a div.wmd-preview element. what i have currently is in my forms (extending Zend_Form) ... i add the functionality thru decorators

// init()
$this->addElement('textarea', 'bio', array(
    'label' => 'Bio',
    'description' => '<a href="http://daringfireball.net/projects/markdown/syntax" target="_blank" title="get markdown editing/syntax help">Markdown enabled</a>',
    'validators' => array(
        array('StringLength', false, array(0, 1000))
    ),
    'decorators' => array(
        'ViewHelper',
        'Errors',
        array('Description', array('tag' => 'p', 'escape' => false)),
        'Label',
        array('HtmlTag', array('tag' => 'p')),
        new Application_Form_Decorator_WmdPreview,
     )
));
...
// add WMD & Prettify
$bootstrap = Zend_Controller_Front::getInstance()->getParam('bootstrap');
$view = $bootstrap->getResource('view');
$view->headScript()->prependFile($view->baseUrl("/js/wmd/wmd.js"))
                   ->prependScript('wmd_options = {"output": "Markdown"};')
                   ->prependFile($view->baseUrl("/js/prettify/prettify.js"));
$view->headLink()->prependStylesheet($view->baseUrl('/js/prettify/prettify.css'));
}

but if i want most textareas to be wmd-enabled, i think it might be better to encapsulate all these in a separate class? or somekind of wrapping element? either way, it will be nicer if i can do something like

$this->addElement(new Application_Form_Element_WmdEditor); 

or something similar

if the answer is to create a custom Zend_Form_Element, how do i go abt doing it? just create a custom view helper that contain all that markup? what if i want other decorators like errors and description to be put inbetween the textarea and the preview div?

+1  A: 
Ashley
That is the most common approach. So I think you're doing a good job, by creating a new class which inherits from Zend_Form_Element_TextArea.
faileN
jiewmeng