'
Hello world in popup
', 'view' => 'View hello world
', 'edit' => 'Edit hello world
', ]; protected function _bindFormFields(Qs_Form $form) { $form->addElement('hidden', 'action', ['value' => 'insert']); $form->addElement('htmlEditor', 'popup', ['label' => 'HtmlEditor in Popup Mode', 'mode' => 'popup']); $form->addElement('htmlEditor', 'view', ['label' => 'HtmlEditor in View Mode', 'mode' => 'view']); $form->addElement('htmlEditor', 'edit', ['label' => 'HtmlEditor in Edit Mode']); return $this; } }