The zend-decorators tag has no wiki summary.
2
votes
1answer
32 views
Zend 1.11 automatically applies htmleneities filter on submit button
we render a German encoded string übermitteln from a file.
Problem:
zend form does not consider ü as a character and displays the same value on my submit button.
Quick fix we got:
...
0
votes
1answer
20 views
zend form element add div after input field
my zend form generates following code:
<dt id="register_username-label">
<label for="register_username" class="required">Membername*</label>
</dt>
<dd ...
0
votes
1answer
25 views
Set a Zend Decoration for radio element
I need to set a decoration for to print:
<input type="radio" id="option1" name="option" value="foo">
<label for="option1"></label>
<label>Option 1</label>
using ...
0
votes
0answers
25 views
Zend Framework: label afer chceckbox input in table
I have checkbox in ZendFramework and i need Label after < input />. All form is in table.
Default i have :
$this->setElementDecorators(array(
'ViewHelper',
'Errors',
...
1
vote
1answer
25 views
set up default element decorator
i wrote own decorator in the app path like "library/myLib/Form/Decorator/Lalala.php"
now suppose to use it like $element->addDecorator('Lalala');
but get error:
Plugin by name 'Filechoose' ...
0
votes
2answers
48 views
Zend Form Decorators issue
*I speak English not well. So i'm going to post the code now.*
Form code:
protected $elementDecorators = array('ViewHelper','Errors','Description','Label',
array('HtmlTag',array('tag' ...
0
votes
0answers
24 views
render zend element errors before element
I have standard Zend form but I need to display error messages before field or after all elements in form.
$searchstring = new Zend_Form_Element_Text('searchstring');
...
1
vote
2answers
63 views
How to decorate forms after unsuccessful submision ZF 1.12
I am really novice to ZF, have Googled a little bit to find a way to decorate login forms after the user have submitted the form (eg. Login form). After the submission and processing if it is not ...
0
votes
0answers
95 views
Custom Zend Form Checkbox HTML output
I'm having trouble trying to get my Zend_Form_Element_Checkbox to render like the HTML provided below.
The desired output should have the checkbox positioned to the left of the label and the label to ...
1
vote
1answer
90 views
Zend_Form_Element conditional class on HtmlTag decorator (on errors)
In one of my web projects I'm building with Zend Framework, I have a form with the following structure:
<form>
<fieldset>
<h2>Header</h2>
<ul>
<li>
...
1
vote
1answer
308 views
Zend Form + Twitter bootstrap: creating 2 spans to show the same form
I'm almost getting insane trying to complete this automated form in Zend_Form, I already did almost everything, and all thanks to Stackoverflow community. here's what I want to do, I'll try to make ...
1
vote
1answer
169 views
Wrap a checkbox in a label using ZF decorators
I encountered some issues with Zend Decorators (ZF1) in wrapping a checkbox into a label.
In my Form I have something very simple like that :
$remember = new Zend_Form_Element_Checkbox('remember');
...
0
votes
1answer
83 views
How to remove default <b></b> labels from Zend FormErrors
I'm fairly new the Zend Framework and I'm stuck.
The following code is a snippet of my form's decorator setting where I'm experiencing a problem:
// prepend errors to top
$this->setDecorators(
...
0
votes
1answer
102 views
Zend_Form : Use images instead of text labels?
I'd like to replace the common input's labels with some images.
I have a multicheckbox with a country list, and I want to display for each checkbox the country flag instead of it's name.
I tried to ...
0
votes
0answers
24 views
decorator vs view helper? [duplicate]
Possible Duplicate:
Zend Form - View helper and form decorator
I tried to use Jquery plugins in Zend and I have created a view helper under ZendX for a Multiple tags autocomplete like this. ...
1
vote
0answers
174 views
Zend Form - View helper and form decorator
What is the difference between a zend form decorator and a view helper? I want to use some awesome Jquery plugins for my form but finding hard to understand about decorators and view helpers, for ...
1
vote
1answer
291 views
Custom Decorator for Zend File Element
I am rendering zend file element using following decorator..
$decoratorFile = array
(
'File',
'Errors',
array(array('data' => 'HtmlTag'), array('tag' => 'td', ...
-2
votes
3answers
444 views
Set Description in Zend Form
I am using Zend Framework in my project. I want to add a description/note to my forms, like
fields marked by * are mandatory
But i didn't found how to add a description to a form and how to use it ...
0
votes
1answer
374 views
Zend Framework: Adding header to form
I am trying to add some html to a zend form but I can't find what I want.
So I create the elements then I have this code:
$form->addDisplayGroup(array('firstElement', 'secondElement'), 'user', ...
0
votes
2answers
176 views
Zend_Form decorators: Unable to view error messages (validation)
When we add decorators to the form elements in zend, the validation message doesn't shows why ?
Code Example :
$this->addElement('Text', 'Last_Name',array(
//'decorators' => ...
0
votes
2answers
108 views
Form Element Decorators
I have been trying to create a custom form with Zend_Form and Decorators, the desired html formatting is as follows:
<form enctype="application/x-www-form-urlencoded" method="post" action="">
...
1
vote
1answer
221 views
Zend Form ViewScript how to show error messages
After days of trying to get this to work I am turning to you. I am rendering a custom form with the ViewScript decorator and can't get the error messages to be shown. I have tried many different ...
0
votes
1answer
125 views
Zend Framework: help needed with Form Decorators
I'm new with developing in Zend Framework. I did some research about form decorators but i want some specific stuff.
This is what i want:
<table>
<tr>
<td colspan="2">
...
0
votes
1answer
237 views
Passing variables to a viewScript Decorator
I have tried adding a partial to my form using the Zend Form's viewScript decorator, however i seem unable to pass along variables to the partial. Here's my code:
In the controller i add the form: ...
1
vote
1answer
151 views
Using HTML in a Zend_Form_Element description decorator
Is it Possible to use HTML within a description decorator in a Zend_Form_Elment? For Example the following statement doesn't work:
$number = new Zend_Form_Element_Text('number', array(
'size' ...
0
votes
1answer
262 views
How to apply decorators on the Input Title of radio button in Zend Framework
I have a zend form and a I need the final Output HTML of the Radio Group to be like this :
<div>
<span class='radio_title'>Gender</span> <!-- The issue is in this line ...
0
votes
1answer
303 views
Encapsulate two elements within div
I want to encapsulate two elements with div tag, I want to have like this
<div>
<span id="mailRecepientName2-label">
<label class="elementTitle required" ...
0
votes
1answer
264 views
Zend Form reCaptcha ViewScript Decorator
I want to use a view script decorator on a reCAPTCHA field. If I use my standard view script as a decorator, the output is a text input field. Here is my standard form field view script:
<?php
...
0
votes
1answer
167 views
Decorators in Zend Framework form
i have this little problem, so i'm using zend decorators to put my inputs in table but i need to put 2 text input in the same tr and i have more than 2.
the code i'm using
$title = new ...
0
votes
2answers
582 views
Zend_Form with CSS
i am new to zend i have coded up to some extent but dont know further how to decorate my form using decorators etc
this is my old HTML
<div class="col_6 pre_3 padding_top_60" ...
0
votes
1answer
94 views
How to put zend radio in an extended table
I'm trying to build a form in the Zend Frameword in which there has to be a table like this:
So, it's a radiobutton followed by some descriptions about a subscription of some sorts. I have googled ...
0
votes
2answers
412 views
how to create table row and colums using setDecorators in zend php.
Hi I have created a setDecorator() which is something like this:
$timeSu->setDecorators(array('ViewHelper', 'Description', 'Errors',
array(
array('data' => 'HtmlTag'),
...
1
vote
1answer
380 views
Zend Form captcha Decorator
Zend Captcha generates 3 elements together are captcha image, hidden input element, input text box for captcha code respectively and places them side by side without any separator.
I want to decorate ...
2
votes
2answers
449 views
Text around element in Zend_Form
So I've created a simple Zend_Form and I would like to display one of its element in this way:
Label: text [input] text2
I've used LabelDecorator to add label successfully and I can even use ...
1
vote
2answers
683 views
Using custom decorators to wrap form elements inside div's with zend_form
I'm looking for a way to wrap zend_form form elements inside div's.
I can get the desired result by using the code below inside the form class.
$element->setDecorators(array(
...
2
votes
3answers
642 views
ZEND - decorators and position of elements?
I've got a problem with zend decorators and can't figure out how to place an element in form where i want to have him.
I got a form where decorators are putting my data into a table, but i want to ...
1
vote
3answers
629 views
Change default Zend Form Decorator on global application level?
Of course, I don't want to change library/Zend.
I know that I can create class My_Form which extends Zend_Form and setup custom decorator. Than, every form extends new class My_Form...
Is there any ...
0
votes
1answer
113 views
$_disableLoadDefaultDecorators and ZendX_JQuery
I use my class to alter decoration of my form.
In other words, instead of calling
Application_Form_Login extends Zend_Form
I use:
Application_Form_Login extends My_Form
In my "My_Form" class I ...
0
votes
2answers
1k views
Zend_Form: addElementPrefixPath vs addPrefixPath
I'm currently building my own set of Form elements with Zend_Form and want all my elements in my custom form to be able to use my custom Decorators
So i've created a custom form like this:
<?php
...
0
votes
0answers
106 views
Using Zend Form Decorators for non Form Elements at All
I have question for all Zend Framework developers.
Does someone tried to use Zend Form Decorators to render some elements that have data but thos element is not a Form at all. For example I have ...
0
votes
1answer
417 views
Zend Framework: Setting Default Decorators for form elements through Zend_Config_Ini
I have the following code in my forms.ini file, that is not working (form rendered is still using the default DtDd decorator).
incident.elements.ticket_number.type = "text"
...
3
votes
4answers
631 views
Use zend-decorator to format Zend_Form_Element_Radio in a table column with oher Zend_Form_Elements in rows
I want use decorators to format as table the following Zend_Form, placing a description in the first column and the Zend_Form_Element_Radio's options in second column and add 2 select in every row as ...
2
votes
1answer
626 views
Zend_Form file field separator
I'm having some trouble shaping the form layout the way I want it to look. The problem here isn't decorating the file element itself, the trouble comes with the function: $file->setMultiFile(3). I ...
0
votes
1answer
586 views
ZEND form elements in a table containing also data from the database
Hi there:) i've got a problem with decorators and form which would be in table and in this table want to have also data from database... I dont have any idea how to do this to have a structure like ...
1
vote
2answers
526 views
How can I use zend form decorator to render errors inside my paragraph tag wrapping label and input
I would like to render the following markup:
<div class="row">
<p>
<label>Your Name</label>
<input type="text" class="text_field" name="name">
<ul ...
1
vote
1answer
317 views
Zend_Forms and decorators in ZF - Displaying label, input and errors in one container
pretty much ripping my hair out over how badly designed the decorators are in Zend Framework.
I've spent a lot of today and a few other days trying to figure out how to do something that should be a ...
6
votes
2answers
3k views
Zend_Framework Decorators Wrap Label and ViewHelper inside a div
I am new to this, zend decoration malarchy, but i have two significant questions that i cant get my head around. Question one is followed by some example
$decorate = array(
array('ViewHelper'),
...
1
vote
1answer
1k views
Three columns table Form in Zend Framework
Hi I have some problem to create "three columns table" form in Zend Framework:
I already have Zend Form decorated by tow columns table:
Table have two column, first one is for label and second one ...
0
votes
1answer
91 views
php Zend Framework - Changing a decorator only if it hasn't been changed already
I'm actually looking for a nice way to have generic decorators for all my forms elements but at the same time being able to change some decorators of some elements very specifically.
Say i want all ...
0
votes
1answer
97 views
Looking for help with Zend Decorators for a list of file uploads
I'm pretty much a newbie to Zend's forms and decorators, and what I need to do is the following:
I'm trying to generate a form that looks as follows (in a table):
| label | upload form | submit ...


