Tagged Questions
The zend-decorators tag has no wiki summary.
31
votes
10answers
24k views
Zend Framework: How do I remove the decorators on a Zend Form Hidden Element?
I'm trying to remove the default decorators on a hidden form element. By default, the hidden element is displayed like this:
<dt>Hidden Element Label (if I had set one)</dt>
...
4
votes
1answer
342 views
How to change the tag of the default Errors decorator within Zend_Form?
I'm trying to change the tag of the Errors decorator, currently it's:
<ul class="errors">
<li>error message</li>
</ul>
I'd like to remove the <ul> wrapper and change ...
4
votes
1answer
666 views
Setting decorators to Zend_Form_Element_Checkbox
I have a zend form comprised of 4 subforms.
1 of these subforms has 4 elements, and one of those elements is a zend_form_element_checkbox.
I have 4 different display groups (1 for each subform) - one ...
4
votes
2answers
5k views
Zend Framework Checkbox Decorators
What I am trying to accomplish is to have checkbox labels display after checkbox input fields (to the right of them).
I am using these decorators now:
private $checkboxDecorators = array(
Label,
...
3
votes
4answers
200 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 ...
3
votes
2answers
426 views
Add multiple element groups into one display group using Zend_Form
I'm using Zend_Form to output my form and I am trying to group button elements within 's and then add them to a fieldset.
The best I have managed is:
<fieldset id="fieldset-group1">
...
3
votes
2answers
2k views
Appending or Prepending HTML Tags to Zend Form Element
For the purposes of styling I have the need to put an opening <div> at the beginning of one element, and a closing </div> tag at the end of another. Looking over the docs for HtmlDecorator ...
2
votes
1answer
85 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 ...
2
votes
2answers
216 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'),
...
2
votes
1answer
154 views
Zend_Form: Using HtmlTag Decorator twice?
Is it possible to wrap the form element in a div AND the whole block (label, element, errors etc) in another div using the HtmlTag decorator? I'd like to use Twitter's Bootstrap with Zend_Form like ...
2
votes
3answers
573 views
Zend 1.11.9 Form decorators / captcha
In the new Zend Framework version 1.11.9 if I want to use a captcha in my form this can be a simple Figlet, the captcha is not shown in the rendered form.
Has anyone encountered this issue, I've been ...
2
votes
2answers
766 views
Zend framework form Decorators
i am trying to get the following layout using decorators:
<form action="/index/login" method="post" id="login_form">
<div class="input_row">
<img ...
2
votes
2answers
635 views
Putting some HTML next to a radio button in Zend Form
I have built a form builder, and I need the ability to assign description to every option in a radio element. Upon creation of this radio element, I ask the user to assign each value a description, ...
2
votes
1answer
535 views
zend framework: zend form decorators - remove multiply <label>
I creating form element by this code:
$input_new = $this->createElement('radio', 'Stars', array(
'label' => 'Stars',
'Options' => array('class'=>'star {split:2}'),
...
2
votes
2answers
1k views
Zend Framework: How to remove the DtDd Decorator on a Zend_Form_Element_File?
I've tried every thing I can think of and I can't figure out how to display only the ViewHelper decorator on a Zend_Form_Element_File.
$UserPhoto = new Zend_Form_Element_File('UserPhoto');
...
2
votes
2answers
243 views
How can I set the class for a <dt> element in a Zend_Form?
I'm trying to set the width of the style for a group of < dt > elements in a Zend_Form.
Is there a way to set a class for a dt element, so the end result would be something like this:
<dt ...
2
votes
2answers
188 views
Is there a better way of designing zend_forms rather than using decorators?
I am currently using zend_decorators to add styles to my form. I was wondering if there is an alternative way of doing it? It is a bit difficult to write decorators. I would love the casual one using ...
2
votes
2answers
5k views
Zend Form, table decorators
I am having an incredibly difficult time to decorate a Zend form the way I need to. This is the HTML structure I am in need of:
<table>
...
1
vote
2answers
115 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
207 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 ...
1
vote
1answer
180 views
Decorators ul li zend_form
<form enctype="application/x-www-form-urlencoded" action="" method="post">
<ul>
<div>
<fieldset id="fieldset-groups"><legend>Endereço</legend>
<li>
...
1
vote
3answers
93 views
Zend passing string containing “Zero” to form-element Description
Zend talk. I built a Zend_Form class.
I noticed that if I pass the string '0' the method setDescription of my form-element will consider it as NULL and I can't get to echo out its value in the ...
1
vote
1answer
200 views
create a table in td using zend decorator
I am using zend forms and zend decorators.
I want to create a sub-table in a parent table's td. like this:
<table>
<tr>
<td>Username:</td>
<td>
...
1
vote
1answer
467 views
Zend Framework: how to create a sub form with a textfield with label and a submit button without?
$sfKeyword = new Zend_Form_SubForm();
// text field
$tfKeyword = $sfKeyword->createElement('text', 'keyword');
$tfKeyword->setLabel('Search Keyword:');
// add elements
...
1
vote
4answers
708 views
Zend Framework: Setting decorators and labels - should this be done in the view or the form class?
I notice that many (most?) people when working with Zend Framework add decorators and labels in the Form class itself.
class User_Form_Add extends Zend_Form
{
public function init()
{
...
1
vote
1answer
125 views
How does one apply a class to a Zend Framework decorator on error?
Right now, I have Zend form elements wrapped in list-items. Form is validating or coughing up errors as it should. But I'd like to apply a class to the list-items of offending elements (but only to ...
1
vote
1answer
84 views
Can custom decorator access parts of $content
In a custom decorator, I'm wrapping the element content with a div. This code creates a div around both the <dt> label and the <dd> element
public function render($content)
{
...
1
vote
2answers
734 views
Zend Decorators - Remove Id Field for DT Wrapper
I got two forms and they share some ids as two input fields are called 'title'.
Zend generates me a nice output like this:
<dl class="zend-form">
<dt id="title-label">
<label ...
1
vote
0answers
305 views
Setting the inner html text of a < span > element using Zend_Form_Decorators
I'm trying to set the inner html of the < span > tag here , so it looks like:
Group
this is what i have so far:
$form->addDisplayGroup(
array(
...
1
vote
0answers
1k views
Zend Form problem:Setting decorators for textarea and textinput length values
In my Zend form code I have the following
$address = new Zend_Form_Element_Textarea('accounts_address');
$address->setLabel('Address')
->setAttrib('rows','4')
...
1
vote
1answer
345 views
How to decorate 'Errors' using standard decorators?
I have set the form decorators in this way:
<?php
$this->setElementDecorators(array(
'Label',
array(array('labelTd' => 'HtmlTag'), array('tag' => ...
1
vote
1answer
270 views
Zend_Form and Decorator help
<select name="day" id="day">
<option value="0" label="Day:">Day:</option>
<option value="1" label="1">1</option>
</select>
<select ...
1
vote
2answers
787 views
How to change the layout of a form with Zend_Form decorators?
I'm totally confused about how decorators work. This is the html structure that I'm trying to achieve:
<form id="" action="" method="post">
<fieldset><legend>Contact ...
1
vote
3answers
938 views
Disable escape in Zend_Form_Element_Multicheckbox
I'm working with the Multicheckbox element and trying to figure out how to disable "escape" in the FormMulticheckbox helper. I've managed to send an escape parameter to the "description" helper, and ...
0
votes
2answers
31 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
22 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
32 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"
...
0
votes
1answer
79 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 ...
0
votes
1answer
65 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 ...
0
votes
0answers
41 views
zend form with table decorators not displaying when file element is added
I am coding a zend form without using mvc.
I am trying to add a file element and use the table, td and tr decorators.
But this doesn't seem to work. What is the problem?
This is the code:
<?php ...
0
votes
0answers
73 views
Zend Framework Splitting up Radio Buttons
I'm creating a more complex form using Zend_Form in Zend Framework 1.11. On the shipping page, the designers have laid it out so that, initially, the user's saved addresses will show up in a ...
0
votes
1answer
47 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
0answers
110 views
Zend_Form Decorators: How can i create a “One-Column” Table Layout
I use zend forms for some time now and i think i understand most of the used decorator pattern. Please correct me, if i'm wrong:
Zend renders the decorators from inside out, so the first element in ...
0
votes
1answer
49 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 ...
0
votes
1answer
109 views
Add Custom Zend Form Element Decorator Via Bootstrap
I have created a new decorator and have added it to my form using addElementPrefixPath. I intend to use this decorator in other forms but do not want to add it every time. How do I add this decorator ...
0
votes
1answer
75 views
How to 'insert' values in tags using Zend Decorators
Please advise on inserting values such as '#', 'Name' and 'Number' between the HTML tags as shown using Zend Form Decorators. Thanks
<thead>
<tr>
...
0
votes
1answer
271 views
Zend Decorators with radio buttons?
How do I turn the standard dt and dd tags provided by default with Zend to using ul and li for a radio button list?
so that the end results is:
ul tag
li tag radio button 1 end li tag
li tag ...
0
votes
1answer
95 views
ZF error decorator. How to wrap error decorator into <tr><td>?
I know that it's possible to create own decorator but I'm interested in is it possible to create it throught the standart error decorator?
I would like to get smth like this:
<table>
...
0
votes
0answers
114 views
how to group radio button and textarea in zend_form
I want a code as a Zend_Form Instance like following:
<form enctype="application/x-www-form-urlencoded" action="" method="post">
<ul>
<li class="pergunta"><label for="pergunta ...
0
votes
2answers
71 views
ZF_FORM: How to add some view template for form element?
I created element in form object:
function createElement()
{
$template = new Zend_Form_Element_Hidden('field');
$template->addDecorator('ViewScript', array('placement' => 'prepend', ...